Commit 8c41a3bd authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

sane.ds: Remove unneeded address-of operators from array name.

parent 9b0adb40
......@@ -528,7 +528,7 @@ BOOL DoScannerUI(void)
hdc = GetDC(0);
memset(&psp,0,sizeof(psp));
memset(psp,0,sizeof(psp));
rc = psane_control_option(activeDS.deviceHandle, 0, SANE_ACTION_GET_VALUE,
&optcount, NULL);
if (rc != SANE_STATUS_GOOD)
......@@ -585,7 +585,7 @@ BOOL DoScannerUI(void)
psh.pszCaption = szCaption;
psh.nPages = page_count;
psh.u2.nStartPage = 0;
psh.u3.ppsp = (LPCPROPSHEETPAGEW) &psp;
psh.u3.ppsp = (LPCPROPSHEETPAGEW)psp;
psh.pfnCallback = PropSheetProc;
psrc = PropertySheetW(&psh);
......
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