chiark / gitweb /
terminal/subterm: use usec_t instead of "unsigned long"
authorDavid Herrmann <dh.herrmann@gmail.com>
Tue, 29 Jul 2014 11:00:35 +0000 (13:00 +0200)
committerDavid Herrmann <dh.herrmann@gmail.com>
Tue, 29 Jul 2014 11:00:35 +0000 (13:00 +0200)
Avoid hard-coding "unsigned long" and use the usec_t type defined in
src/shared.

src/libsystemd-terminal/subterm.c

index 5cf3c2a73a56b51aeeb431e09af8880ef91d5c9f..3990fb392bb81164ac7c26f7d850a94fc9cba6eb 100644 (file)
@@ -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);