Another small fix to UTILITIES/x11idle.c.

This commit is contained in:
Bastien Guerry 2012-07-28 01:36:04 +02:00
parent f79a477cc4
commit 725a6c6a3d
1 changed files with 1 additions and 1 deletions

View File

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