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

Unified Diff: test/link-dependency/mymalloc.c

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/library/src/program.c ('k') | test/link-objects/base.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/link-dependency/mymalloc.c
diff --git a/test/link-dependency/mymalloc.c b/test/link-dependency/mymalloc.c
index 23d034f9142409a6fb8ace195b1421b9036ba8dc..f80bc02a62682eaf5c01b47af0b950f49eef007b 100644
--- a/test/link-dependency/mymalloc.c
+++ b/test/link-dependency/mymalloc.c
@@ -7,5 +7,6 @@ __declspec(dllexport) void foo() {}
#endif
void *malloc(size_t size) {
+ (void)size;
return (void*)0xdeadbeef;
}
« no previous file with comments | « test/library/src/program.c ('k') | test/link-objects/base.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698