1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-27 10:21:14 -08:00

(Ffile_attributes): Cast st_size to int.

This commit is contained in:
Richard M. Stallman 1994-04-13 22:20:10 +00:00
parent 982344072c
commit ed2ef6c9e0

View file

@ -634,7 +634,7 @@ If file does not exist, returns nil.")
values[4] = make_time (s.st_atime);
values[5] = make_time (s.st_mtime);
values[6] = make_time (s.st_ctime);
values[7] = make_number (s.st_size);
values[7] = make_number ((int) s.st_size);
/* If the size is out of range, give back -1. */
if (XINT (values[7]) != s.st_size)
XSETINT (values[7], -1);