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

View file

@ -363,7 +363,7 @@ BOOL16 WINAPI 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);
return FALSE;
}