diff options
| author | Juanma Barranquero | 2010-07-04 15:41:55 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-07-04 15:41:55 +0200 |
| commit | e5447b22e975b57094fb6089bf98a238d29fd710 (patch) | |
| tree | a6c303a2d8d73b960df36982447ec3b6d7f92632 /src/sysdep.c | |
| parent | 438105ed4d403c48cc452cd70891f04bbcdad347 (diff) | |
| download | emacs-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.c | 2 |
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 | ||
| 2581 | int | 2581 | int |
| 2582 | set_file_times (const char *filename, struct timeval atime, struct timeval mtime) | 2582 | set_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]; |