summaryrefslogtreecommitdiff
path: root/include/timeout.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/timeout.h')
-rw-r--r--include/timeout.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/timeout.h b/include/timeout.h
index a6ac20ba5..0aec7aef9 100644
--- a/include/timeout.h
+++ b/include/timeout.h
@@ -21,11 +21,11 @@
/* Definitions for timeouts: */
typedef struct timeout_ Timeout;
struct timeout_ {
- Timeout *next, *prev;
- time_t settime, timeout;
- int repeat; /* Does this timeout repeat indefinitely? */
- void (*code)(Timeout *); /* This structure is passed to the code */
- void *data; /* Can be anything */
+ Timeout *next, *prev;
+ time_t settime, timeout;
+ int repeat; /* Does this timeout repeat indefinitely? */
+ void (*code)(Timeout *); /* This structure is passed to the code */
+ void *data; /* Can be anything */
};