Skip to content

Commit 10886d3

Browse files
committed
opencl: Add missing argument for L_WARNING
gcc report: In file included from /usr/include/leptonica/alltypes.h:36:0, from /usr/include/leptonica/allheaders.h:34, from openclwrapper.h:2, from openclwrapper.cpp:11: openclwrapper.cpp: In static member function 'static PIX* OpenclDevice::pixReadMemTiffCl(const l_uint8*, size_t, l_int32)': /usr/include/leptonica/environ.h:442:68: warning: format '%d' expects a matching 'int' argument [-Wformat=] (void)fprintf(stderr, "Warning in %s: " a, __VA_ARGS__), \ ^ /usr/include/leptonica/environ.h:427:61: note: in definition of macro 'IF_SEV' ((l) >= MINIMUM_SEVERITY && (l) >= LeptMsgSeverity ? (t) : (f)) ^ opencl/openclwrapper.cpp:1162:3: note: in expansion of macro 'L_WARNING' L_WARNING("tiff page %d not found", procName); ^ Signed-off-by: Stefan Weil <[email protected]>
1 parent 90dad1f commit 10886d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opencl/openclwrapper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ OpenclDevice::pixReadMemTiffCl(const l_uint8 *data,size_t size,l_int32 n)
11591159
}
11601160

11611161
if (pagefound == FALSE) {
1162-
L_WARNING("tiff page %d not found", procName);
1162+
L_WARNING("tiff page %d not found", procName, i);
11631163
TIFFCleanup(tif);
11641164
return NULL;
11651165
}

0 commit comments

Comments
 (0)