0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-16 16:16:29 +00:00

Small spelling/cleanup fixes for UTILITIES/x11idle.c

This commit is contained in:
Bastien Guerry 2012-07-28 01:34:23 +02:00
parent f250f6beba
commit f79a477cc4

View file

@ -8,7 +8,6 @@
* path
*/
main() {
Status querry = 0;
XScreenSaverInfo *info = XScreenSaverAllocInfo();
//open the display specified by the DISPLAY environment variable
Display *display = XOpenDisplay(0);
@ -18,15 +17,12 @@ main() {
return -1;
}
//X11 is running, retrieve and print idle time
querry = XScreenSaverQueryInfo(display, DefaultRootWindow(display), info);
if (querry == 0) {
return -1;
//X11 is running, try to retrieve info
if (XScreenSaverQueryInfo(display, DefaultRootWindow(display), info) == 0) {
return -1;
}
//idle time was retrieved successfully, print it
//info was retrieved successfully, print idle time
printf("%u\n", info->idle);
return 0;
}