From: Vadim Zeitlin Date: Tue, 14 May 2002 11:28:26 +0000 (+0000) Subject: fixed a warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7413788a826d123b60a0f0854c9df1d863643f04 fixed a warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/tiff/tif_print.c b/src/tiff/tif_print.c index 689586afab..7197e652e4 100644 --- a/src/tiff/tif_print.c +++ b/src/tiff/tif_print.c @@ -460,7 +460,7 @@ _TIFFprintAscii(FILE* fd, const char* cp) for (; *cp != '\0'; cp++) { const char* tp; - if (isprint(*cp)) { + if (isprint((int)*cp)) { fputc(*cp, fd); continue; }