Commit aeae92e9 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 03e2b335
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment