diff options
| author | Paul Eggert | 2011-06-12 16:28:37 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-12 16:28:37 -0700 |
| commit | d37ca62316e7526da7d75cc44c7a4cd8a6281bb5 (patch) | |
| tree | e50d173d4fdedd10d52bb4258bd89a0d29f4fff1 /src/lread.c | |
| parent | ea204efb8a3e81a4d9b04d2a36cb8c2a1c74662c (diff) | |
| download | emacs-d37ca62316e7526da7d75cc44c7a4cd8a6281bb5.tar.gz emacs-d37ca62316e7526da7d75cc44c7a4cd8a6281bb5.zip | |
Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
These casts should not be needed on 32-bit hosts, either.
* keyboard.c (read_char):
* lread.c (Fload): Remove casts to unsigned.
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index b22ca930ee6..0426cd4d548 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1208,7 +1208,7 @@ Return t if the file exists and loads successfully. */) | |||
| 1208 | result = stat (SSDATA (efound), &s2); | 1208 | result = stat (SSDATA (efound), &s2); |
| 1209 | SSET (efound, SBYTES (efound) - 1, 'c'); | 1209 | SSET (efound, SBYTES (efound) - 1, 'c'); |
| 1210 | 1210 | ||
| 1211 | if (result >= 0 && (unsigned) s1.st_mtime < (unsigned) s2.st_mtime) | 1211 | if (result == 0 && s1.st_mtime < s2.st_mtime) |
| 1212 | { | 1212 | { |
| 1213 | /* Make the progress messages mention that source is newer. */ | 1213 | /* Make the progress messages mention that source is newer. */ |
| 1214 | newer = 1; | 1214 | newer = 1; |