From 9d374821a08c2032d9713837b8ec06ec0ed43889 Mon Sep 17 00:00:00 2001 From: James Youngman Date: Sun, 6 Apr 2008 23:19:53 +0100 Subject: [PATCH] script: read returns a size_t Signed-off-by: James Youngman Signed-off-by: Karel Zak --- misc-utils/script.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc-utils/script.c b/misc-utils/script.c index 5f56f505..fc54fcef 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); -- 2.39.5