# HG changeset patch # User Richard M. Stallman # Date 770090810 0 # Node ID 36420d9e4b4171a3003dcd12cea26060f8a2af43 # Parent d88d94461e5d8137972621c8b3dfdf95ff989e9b (difftm): Don't store a long value into an int variable. diff -r d88d94461e5d -r 36420d9e4b41 src/editfns.c --- a/src/editfns.c Sat May 28 01:59:24 1994 +0000 +++ b/src/editfns.c Sat May 28 02:06:50 1994 +0000 @@ -629,7 +629,7 @@ int ay = a->tm_year + (TM_YEAR_ORIGIN - 1); int by = b->tm_year + (TM_YEAR_ORIGIN - 1); /* Some compilers can't handle this as a single return statement. */ - int days = ( + long days = ( /* difference in day of year */ a->tm_yday - b->tm_yday /* + intervening leap days */