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

Unified Diff: courgette/courgette_minimal_tool.cc

Issue 149597: Code changes to get the code to compile under GCC.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « courgette/courgette.h ('k') | courgette/courgette_tool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/courgette_minimal_tool.cc
===================================================================
--- courgette/courgette_minimal_tool.cc (revision 21002)
+++ courgette/courgette_minimal_tool.cc (working copy)
@@ -33,7 +33,11 @@
exit(1);
}
+#if defined(OS_WIN)
int wmain(int argc, const wchar_t* argv[]) {
+#else
+int main(int argc, const char* argv[]) {
+#endif
if (argc != 4)
UsageProblem("bad args");
Property changes on: courgette/courgette_minimal_tool.cc
___________________________________________________________________
Name: svn:eol-style
+ LF
« no previous file with comments | « courgette/courgette.h ('k') | courgette/courgette_tool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698