mustek_usb2: Fix sprintf invocation. Fixes #110

merge-requests/92/head
Olaf Meeuwissen 2019-08-08 21:41:22 +09:00
rodzic 90684c53bb
commit 953ed4c2b0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1382,7 +1382,7 @@ Transparent_LineCalibration16Bits (unsigned short wTAShadingMinus)
memset (lpBuf, 0, 50);
stream = fopen ("/root/darkshading(Tra).pnm", "wb+\n");
sprintf (lpBuf, "P6\n%d %d\n65535\n", wCalWidth * wCalHeight);
sprintf (lpBuf, "P6\n%d %d\n65535\n", wCalWidth, wCalHeight);
fwrite (lpBuf, sizeof (SANE_Byte), strlen (lpBuf), stream);
fwrite (lpDarkData, sizeof (SANE_Byte), wCalWidth * wCalHeight * 3 * 2, stream);
fclose (stream);