aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorJuanma Barranquero2010-07-04 15:41:55 +0200
committerJuanma Barranquero2010-07-04 15:41:55 +0200
commite5447b22e975b57094fb6089bf98a238d29fd710 (patch)
treea6c303a2d8d73b960df36982447ec3b6d7f92632 /src/sysdep.c
parent438105ed4d403c48cc452cd70891f04bbcdad347 (diff)
downloademacs-e5447b22e975b57094fb6089bf98a238d29fd710.tar.gz
emacs-e5447b22e975b57094fb6089bf98a238d29fd710.zip
Fix more prototypes.
* atimer.c (start_atimer): Use EMACS_TIME, not struct timeval. * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval. * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 60da786c04d..8e783bd7344 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2579,7 +2579,7 @@ closedir (DIR *dirp /* stream from opendir */)
2579 2579
2580 2580
2581int 2581int
2582set_file_times (const char *filename, struct timeval atime, struct timeval mtime) 2582set_file_times (const char *filename, EMACS_TIME atime, EMACS_TIME mtime)
2583{ 2583{
2584#ifdef HAVE_UTIMES 2584#ifdef HAVE_UTIMES
2585 struct timeval tv[2]; 2585 struct timeval tv[2];