comdlg32: Don't use sizeof in traces to avoid printf format warnings.
This commit is contained in:
parent
03e2b335c4
commit
aeae92e9f9
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue