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/atimer.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/atimer.c')
| -rw-r--r-- | src/atimer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/atimer.c b/src/atimer.c index 46c333a9106..23f3915d9c0 100644 --- a/src/atimer.c +++ b/src/atimer.c | |||
| @@ -90,7 +90,8 @@ SIGTYPE alarm_signal_handler (int signo); | |||
| 90 | to cancel_atimer; don't free it yourself. */ | 90 | to cancel_atimer; don't free it yourself. */ |
| 91 | 91 | ||
| 92 | struct atimer * | 92 | struct atimer * |
| 93 | start_atimer (enum atimer_type type, struct timeval time, atimer_callback fn, void *client_data) | 93 | start_atimer (enum atimer_type type, EMACS_TIME time, atimer_callback fn, |
| 94 | void *client_data) | ||
| 94 | { | 95 | { |
| 95 | struct atimer *t; | 96 | struct atimer *t; |
| 96 | 97 | ||