--- misc-utils/script.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc-utils/script.c b/misc-utils/script.c index 5f56f50..fc54fce 100644 --- a/misc-utils/script.c +++ b/misc-utils/script.c @@ -286,7 +286,7 @@ my_strftime(char *buf, size_t len, const char *fmt, const struct tm *tm) { void dooutput() { - register int cc; + register ssize_t cc; time_t tvec; char obuf[BUFSIZ]; struct timeval tv; @@ -338,7 +338,7 @@ dooutput() { break; if (tflg) { newtime = tv.tv_sec + (double) tv.tv_usec / 1000000; - fprintf(stderr, "%f %i\n", newtime - oldtime, cc); + fprintf(stderr, "%f %zd\n", newtime - oldtime, cc); oldtime = newtime; } wrt = write(1, obuf, cc); -- 1.5.3.8 -- To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html