Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(956)

Unified Diff: ppapi/native_client/src/untrusted/irt_stub/ppapi_plugin_start.c

Issue 1333673002: Build PPAPI NaCl Glibc tests with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/native_client/src/untrusted/irt_stub/BUILD.gn ('k') | ppapi/tests/testing_instance.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « ppapi/native_client/src/untrusted/irt_stub/BUILD.gn ('k') | ppapi/tests/testing_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698