Changed %zu back to %d since Borland C++ doesn't understand %zu.

This commit is contained in:
skarg
2010-11-30 06:08:48 +00:00
parent dd92901aa1
commit 01d1d5bd77
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ static void AtomicReadFileAckHandler(
} else if (octets_written == 0) {
fprintf(stderr, "Received 0 byte octet string!.\n");
} else {
printf("\r%zu bytes",
printf("\r%d bytes",
(data.type.stream.fileStartPosition + octets_written));
}
fflush(pFile);