[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Changes to m4/m4/output.c,v
From: |
Eric Blake |
Subject: |
Changes to m4/m4/output.c,v |
Date: |
Sat, 11 Nov 2006 14:00:30 +0000 |
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);
- Changes to m4/m4/output.c,v, Eric Blake, 2006/11/07
- Changes to m4/m4/output.c,v, Eric Blake, 2006/11/08
- Changes to m4/m4/output.c,v,
Eric Blake <=
- Changes to m4/m4/output.c,v, Eric Blake, 2006/11/14
- Changes to m4/m4/output.c,v, Eric Blake, 2006/11/14