comdlg32: Don't use sizeof in traces to avoid printf format warnings.

This commit is contained in:
Alexandre Julliard 2006-06-13 14:09:24 +02:00
parent 03e2b335c4
commit aeae92e9f9
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ BOOL16 WINAPI PrintDlg16(
} }
if(lppd->lStructSize != sizeof(PRINTDLG16)) { if(lppd->lStructSize != sizeof(PRINTDLG16)) {
ERR("structure size (%ld/%d)\n",lppd->lStructSize,sizeof(PRINTDLG16)); ERR("structure size %ld\n",lppd->lStructSize);
COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE); COMDLG32_SetCommDlgExtendedError(CDERR_STRUCTSIZE);
return FALSE; return FALSE;
} }