From 72d1e597c85fbf6b45756e3c753696370c48c042 Mon Sep 17 00:00:00 2001 From: "maruel@google.com" Date: Tue, 10 Mar 2009 17:39:46 +0000 Subject: Slight code change to make some global variables const. Fix >80 cols lines. Review URL: http://codereview.chromium.org/42013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11342 0039d316-1c4b-4281-b951-d872f2087c98 --- sandbox/sandbox_poc/pocdll/invasive.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sandbox/sandbox_poc/pocdll') diff --git a/sandbox/sandbox_poc/pocdll/invasive.cc b/sandbox/sandbox_poc/pocdll/invasive.cc index 9118294..1bac7c1 100644 --- a/sandbox/sandbox_poc/pocdll/invasive.cc +++ b/sandbox/sandbox_poc/pocdll/invasive.cc @@ -172,7 +172,9 @@ BOOL CALLBACK EnumWindowCallback(HWND hwnd, LPARAM output) { wchar_t window_title[100 + 1] = {0}; ::GetWindowText(hwnd, window_title, 100); fprintf(reinterpret_cast(output), - "[GRANTED] Found window 0x%p with title %S\r\n", hwnd, window_title); + "[GRANTED] Found window 0x%p with title %S\r\n", + hwnd, + window_title); ::CloseWindow(hwnd); } @@ -192,4 +194,3 @@ void POCDLL_API TestCloseHWND(HANDLE log) { // before returning. ::Sleep(3000); } - -- cgit v1.1