diff options
| -rw-r--r-- | win32/PlatWin.cxx | 2 | ||||
| -rw-r--r-- | win32/ScintillaWin.cxx | 6 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 28587b917..27e8293c9 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -1487,7 +1487,7 @@ void SurfaceD2D::Copy(PRectangle rc, Point from, Surface &surfaceSource) {  			D2D1_BITMAP_INTERPOLATION_MODE_NEAREST_NEIGHBOR, rcSource);  		hr = pRenderTarget->Flush();  		if (FAILED(hr)) { -			Platform::DebugPrintf("Failed Flush 0x%x\n", hr); +			Platform::DebugPrintf("Failed Flush 0x%lx\n", hr);  		}  		pBitmap->Release();  	} diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index c15986572..a11ac94a1 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -570,7 +570,7 @@ void ScintillaWin::EnsureRenderTarget(HDC hdc) {  			if (SUCCEEDED(hr)) {  				pRenderTarget = pDCRT;  			} else { -				Platform::DebugPrintf("Failed CreateDCRenderTarget 0x%x\n", hr); +				Platform::DebugPrintf("Failed CreateDCRenderTarget 0x%lx\n", hr);  				pRenderTarget = nullptr;  			} @@ -586,7 +586,7 @@ void ScintillaWin::EnsureRenderTarget(HDC hdc) {  			if (SUCCEEDED(hr)) {  				pRenderTarget = pHwndRenderTarget;  			} else { -				Platform::DebugPrintf("Failed CreateHwndRenderTarget 0x%x\n", hr); +				Platform::DebugPrintf("Failed CreateHwndRenderTarget 0x%lx\n", hr);  				pRenderTarget = nullptr;  			}  		} @@ -609,7 +609,7 @@ void ScintillaWin::EnsureRenderTarget(HDC hdc) {  		GetClientRect(MainHWND(), &rcWindow);  		const HRESULT hr = static_cast<ID2D1DCRenderTarget*>(pRenderTarget)->BindDC(hdc, &rcWindow);  		if (FAILED(hr)) { -			Platform::DebugPrintf("BindDC failed 0x%x\n", hr); +			Platform::DebugPrintf("BindDC failed 0x%lx\n", hr);  			DropRenderTarget();  		}  	} | 
