CVSROOT: /sources/m4
Module name: m4
Changes by: Eric Blake <ericb> 06/11/11 14:00:29
Index: m4/output.c
===================================================================
RCS file: /sources/m4/m4/m4/output.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -b -r1.37 -r1.38
--- m4/output.c 8 Nov 2006 05:11:47 -0000 1.37
+++ m4/output.c 11 Nov 2006 14:00:28 -0000 1.38
@@ -765,11 +765,11 @@
fix frozen file format to support 64-bit
integers. */
if (file_stat.st_size < 0
- || file_stat.st_size != (unsigned long) file_stat.st_size)
+ || file_stat.st_size != (unsigned long int) file_stat.st_size)
m4_error (context, EXIT_FAILURE, errno,
_("diversion too large"));
fprintf (file, "D%d,%lu", diversion->divnum,
- (unsigned long) file_stat.st_size);
+ (unsigned long int) file_stat.st_size);
}
m4_insert_diversion_helper (context, diversion, node);