From: Fridrich S. <str...@us...> - 2008-04-09 09:42:06
|
Update of /cvsroot/libwpg/libwpg/src/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv768/src/lib Modified Files: WPGBitmap.cpp Log Message: some more unsigned vs. signed stuff in code that is almost never used :-) Index: WPGBitmap.cpp =================================================================== RCS file: /cvsroot/libwpg/libwpg/src/lib/WPGBitmap.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- WPGBitmap.cpp 11 Dec 2007 14:46:49 -0000 1.14 +++ WPGBitmap.cpp 9 Apr 2008 09:41:58 -0000 1.15 @@ -203,7 +203,7 @@ // temporary for debug - dump the binary bmp (need to have write access in the current directory #if 0 FILE *f = fopen("binarydump.bmp", "w"); - for (int k = 0; k < tmpDIBFileSize; k++) + for (unsigned k = 0; k < tmpDIBFileSize; k++) fprintf(f, "%c",tmpDIBBuffer[k]); fclose(f); #endif |