Get rid of a warning.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1081 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2003-07-21 19:08:55 +00:00
parent 179c8cc54b
commit d60c03e7b6
+1 -1
View File
@@ -397,7 +397,7 @@ debugCmdCat(DebugContext *debugContext, int argc, char *argv[]) {
totalWritten += numWritten; totalWritten += numWritten;
} while (numInBuf > 0); } while (numInBuf > 0);
} }
fprintf(debugContext->out, "[%d bytes]\n", totalWritten); fprintf(debugContext->out, "[%u bytes]\n", (unsigned int) totalWritten);
uio_close(handle); uio_close(handle);
return 0; return 0;