Browse Source

Another small fix to UTILITIES/x11idle.c.

Bastien Guerry 12 years ago
parent
commit
725a6c6a3d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      UTILITIES/x11idle.c

+ 1 - 1
UTILITIES/x11idle.c

@@ -23,6 +23,6 @@ main() {
     }
 
     //info was retrieved successfully, print idle time
-    printf("%u\n", info->idle);
+    printf("%lu\n", info->idle);
     return 0;
 }