diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/atimer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/atimer.c b/src/atimer.c index 92f5076fcc7..d4cd6ef4801 100644 --- a/src/atimer.c +++ b/src/atimer.c | |||
| @@ -100,8 +100,8 @@ start_atimer (type, time, fn, client_data) | |||
| 100 | #ifndef HAVE_SETITIMER | 100 | #ifndef HAVE_SETITIMER |
| 101 | if (EMACS_USECS (time) != 0) | 101 | if (EMACS_USECS (time) != 0) |
| 102 | { | 102 | { |
| 103 | EMACS_USECS (time) = 0; | 103 | EMACS_SET_USECS (time, 0); |
| 104 | ++EMACS_SECS (time); | 104 | EMACS_SET_SECS (time, EMACS_SECS (time) + 1); |
| 105 | } | 105 | } |
| 106 | #endif /* not HAVE_SETITIMER */ | 106 | #endif /* not HAVE_SETITIMER */ |
| 107 | 107 | ||