| Index: platform_tools/nacl/src/nacl_interface.cpp
|
| diff --git a/platform_tools/nacl/src/nacl_interface.cpp b/platform_tools/nacl/src/nacl_interface.cpp
|
| index 525f3efd6b40ac0b0e908b1d879f1beaa91d6ea8..297458dd8e624bc348be5524b9bfbb06d44d3b94 100644
|
| --- a/platform_tools/nacl/src/nacl_interface.cpp
|
| +++ b/platform_tools/nacl/src/nacl_interface.cpp
|
| @@ -24,7 +24,7 @@ class SkiaInstance;
|
| SkiaInstance* gPluginInstance;
|
|
|
| // Main entry point for the app we're linked into
|
| -extern int test_main(int, char**);
|
| +extern int test_main();
|
|
|
| // Tokenize a command line and store it in argc and argv.
|
| void SkStringToProgramArgs(const SkString commandLine, int* argc, char*** argv) {
|
| @@ -68,7 +68,7 @@ void RunProgram(const SkString& commandLine) {
|
| int argc;
|
| char** argv;
|
| SkStringToProgramArgs(commandLine, &argc, &argv);
|
| - test_main(argc, argv);
|
| + test_main();
|
| }
|
|
|
|
|
|
|