summaryrefslogtreecommitdiff
path: root/src/libsystemd-terminal
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2014-07-29 13:00:35 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2014-07-29 13:00:35 +0200
commitb13dbd6ca4df58c185f639c409651cad2defa23b (patch)
tree2648cb04570bac0b97af560db79046728a753722 /src/libsystemd-terminal
parent16aa63a00b5b1db23a9c0b8de350ebf482d90cd0 (diff)
terminal/subterm: use usec_t instead of "unsigned long"
Avoid hard-coding "unsigned long" and use the usec_t type defined in src/shared.
Diffstat (limited to 'src/libsystemd-terminal')
-rw-r--r--src/libsystemd-terminal/subterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-terminal/subterm.c b/src/libsystemd-terminal/subterm.c
index 5cf3c2a73a..3990fb392b 100644
--- a/src/libsystemd-terminal/subterm.c
+++ b/src/libsystemd-terminal/subterm.c
@@ -564,7 +564,7 @@ static void output_draw(Output *o, bool menu, term_screen *screen) {
*/
static void terminal_dirty(Terminal *t) {
- uint64_t usec;
+ usec_t usec;
int r;
assert(t);