From: Jim Meyering Date: Fri, 28 Oct 1994 18:32:31 +0000 (+0000) Subject: . X-Git-Tag: textutils-1_12_1~496 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ef20008e86d403130dc4e4b3a9287cc7dd472e4;p=thirdparty%2Fcoreutils.git . --- diff --git a/src/ls.c b/src/ls.c index ed9bf8f132..ba23ccf866 100644 --- a/src/ls.c +++ b/src/ls.c @@ -515,7 +515,7 @@ dired_dump_obstack (prefix, os) n_pos = obstack_object_size (os) / sizeof (size_t); pos = obstack_finish (os); for (i = 0; i < n_pos; i++) - printf (" %d", pos[i]); + printf (" %d", (int) pos[i]); fputs ("\n", stdout); }