1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-05 00:07:51 +02:00
This commit is contained in:
Jim Meyering
1994-10-28 18:32:31 +00:00
parent c0119ac534
commit 2ef20008e8
+1 -1
View File
@@ -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);
}