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

Unified Diff: test/external-cross-compile/src/program.cc

Issue 316163002: Remove unused parameters from test code. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Use int main(void) instead Created 6 years, 6 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 | « test/exclusion/hello.c ('k') | test/generator-output/actions/subdir1/program.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/external-cross-compile/src/program.cc
diff --git a/test/external-cross-compile/src/program.cc b/test/external-cross-compile/src/program.cc
index a50ca367a971822cc19b9700d505830f6a62eff3..5172ae90fefbed4dd319c2004284a12f87439880 100644
--- a/test/external-cross-compile/src/program.cc
+++ b/test/external-cross-compile/src/program.cc
@@ -10,7 +10,7 @@ static char data[] = {
#include "cross_program.h"
};
-int main(int argc, char *argv[]) {
+int main(void) {
fwrite(data, 1, sizeof(data), stdout);
return 0;
}
« no previous file with comments | « test/exclusion/hello.c ('k') | test/generator-output/actions/subdir1/program.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698