diff options
author | June McEnroe <june@causal.agency> | 2020-02-03 18:41:52 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-03 18:41:52 -0500 |
commit | 26e9dd9adfd4df90cd4cc6ef14d91cdad2efb239 (patch) | |
tree | 6c4a44b69dae6be1fa75395fe23cd735669c5462 /chat.h | |
parent | Add sequences for toggling focus/paste modes (diff) | |
download | catgirl-26e9dd9adfd4df90cd4cc6ef14d91cdad2efb239.tar.gz catgirl-26e9dd9adfd4df90cd4cc6ef14d91cdad2efb239.zip |
Use time_t rather than struct tm
Diffstat (limited to 'chat.h')
-rw-r--r-- | chat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat.h b/chat.h index 76d69c9..9165c13 100644 --- a/chat.h +++ b/chat.h @@ -115,9 +115,9 @@ void uiShow(void); void uiHide(void); void uiDraw(void); void uiShowID(size_t id); -void uiWrite(size_t id, enum Heat heat, const struct tm *time, const char *str); +void uiWrite(size_t id, enum Heat heat, const time_t *time, const char *str); void uiFormat( - size_t id, enum Heat heat, const struct tm *time, const char *format, ... + size_t id, enum Heat heat, const time_t *time, const char *format, ... ) __attribute__((format(printf, 4, 5))); static inline enum Color hash(const char *str) { |