From 7577954ced47f09803bc1b3881d47f222dbd306b Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 18 Apr 2007 22:10:36 +0000 Subject: (svn r9672) -Cleanup: lots of coding style fixes around operands. --- src/win32.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/win32.cpp') diff --git a/src/win32.cpp b/src/win32.cpp index 7de27bfab..a1829fd03 100644 --- a/src/win32.cpp +++ b/src/win32.cpp @@ -335,7 +335,7 @@ static const TCHAR * const _expand_texts[] = {_T("S&how report >>"), _T("&Hide r static void SetWndSize(HWND wnd, int mode) { - RECT r,r2; + RECT r, r2; int offs; GetWindowRect(wnd, &r); @@ -368,7 +368,7 @@ static bool DoEmergencySave(HWND wnd) return b; } -static INT_PTR CALLBACK CrashDialogFunc(HWND wnd,UINT msg,WPARAM wParam,LPARAM lParam) +static INT_PTR CALLBACK CrashDialogFunc(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { case WM_INITDIALOG: { @@ -549,7 +549,7 @@ static LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS *ep) } { - int i,j; + int i, j; #ifdef _M_AMD64 uint32 *b = (uint32*)ep->ContextRecord->Rsp; #else @@ -557,7 +557,7 @@ static LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS *ep) #endif for (j = 0; j != 24; j++) { for (i = 0; i != 8; i++) { - if (IsBadReadPtr(b,sizeof(uint32))) { + if (IsBadReadPtr(b, sizeof(uint32))) { output += sprintf(output, " ????????"); //OCR: WAS - , 0); } else { output += sprintf(output, " %.8X", *b); -- cgit v1.2.3-70-g09d2