summaryrefslogtreecommitdiffstats
path: root/sandbox/sandbox_poc/pocdll/invasive.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/sandbox_poc/pocdll/invasive.cc')
-rw-r--r--sandbox/sandbox_poc/pocdll/invasive.cc5
1 files changed, 3 insertions, 2 deletions
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<FILE*>(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);
}
-