| Index: ppapi/native_client/tests/ppapi_geturl/module.cc
|
| diff --git a/ppapi/native_client/tests/ppapi_geturl/module.cc b/ppapi/native_client/tests/ppapi_geturl/module.cc
|
| index 766c4b5181c98c6c0559440ac670f2c3047f0487..a610f08121d1763d273d8dc2f9b138bb7c5f9dd5 100644
|
| --- a/ppapi/native_client/tests/ppapi_geturl/module.cc
|
| +++ b/ppapi/native_client/tests/ppapi_geturl/module.cc
|
| @@ -221,7 +221,7 @@ PP_Var Module::StrToVar(const char* str) {
|
| return PP_MakeUndefined();
|
| const PPB_Var* ppb_var = module->ppb_var_interface();
|
| if (NULL != ppb_var)
|
| - return ppb_var->VarFromUtf8(module->module_id(), str, strlen(str));
|
| + return ppb_var->VarFromUtf8(str, strlen(str));
|
| return PP_MakeUndefined();
|
| }
|
|
|
|
|