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

Unified Diff: src/views/win/skia_win.cpp

Issue 12536008: Enable init'ed but unused var warning on windows for closer parity with mac/linux warnings. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 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
« src/views/win/SkOSWindow_win.cpp ('K') | « src/views/win/SkOSWindow_win.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/views/win/skia_win.cpp
===================================================================
--- src/views/win/skia_win.cpp (revision 8271)
+++ src/views/win/skia_win.cpp (working copy)
@@ -138,7 +138,7 @@
char* argv[4096];
int argc = 0;
TCHAR exename[1024], *next;
- int exenameLen = GetModuleFileName(NULL, exename, 1024);
+ GetModuleFileName(NULL, exename, 1024);
reed1 2013/03/21 13:14:24 same comment about (void)GetModuleFileName
bsalomon 2013/03/21 13:45:29 Done.
argv[argc++] = tchar_to_utf8(exename);
TCHAR* arg = _tcstok_s(lpCmdLine, _T(" "), &next);
while (arg != NULL) {
« src/views/win/SkOSWindow_win.cpp ('K') | « src/views/win/SkOSWindow_win.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698