| Index: ppapi/native_client/src/untrusted/irt_stub/ppapi_plugin_start.c
|
| diff --git a/ppapi/native_client/src/untrusted/irt_stub/ppapi_plugin_start.c b/ppapi/native_client/src/untrusted/irt_stub/ppapi_plugin_start.c
|
| index 28a6593212e57136dc4bd444be8039eceecc289c..2d148ae21a10b1286112571419285956ea8fcae9 100644
|
| --- a/ppapi/native_client/src/untrusted/irt_stub/ppapi_plugin_start.c
|
| +++ b/ppapi/native_client/src/untrusted/irt_stub/ppapi_plugin_start.c
|
| @@ -16,7 +16,8 @@
|
| #include "ppapi/native_client/src/untrusted/irt_stub/thread_creator.h"
|
|
|
| static void fatal_error(const char *message) {
|
| - write(2, message, strlen(message));
|
| + ssize_t wrote __attribute__((unused));
|
| + wrote = write(2, message, strlen(message));
|
| _exit(127);
|
| }
|
|
|
|
|