use a boolean value

This commit is contained in:
Julien Danjou 2008-01-27 18:55:03 +01:00
parent 46f42de45f
commit 16607e39e6
1 changed files with 3 additions and 2 deletions

View File

@ -43,6 +43,7 @@ main(int argc, char **argv)
DrawCtx *ctx;
XColor fg, bg, c;
XEvent ev;
Bool running = True;
const char *fg_color = "#000000";
const char *bg_color = "#ffffff";
int opt;
@ -127,14 +128,14 @@ main(int argc, char **argv)
XMapRaised(disp, sw->window);
XSync(disp, False);
while (1)
while (running)
{
XNextEvent(disp, &ev);
switch (ev.type)
{
case ButtonPress:
case KeyPress:
return EXIT_SUCCESS;
running = False;
case Expose:
simplewindow_refresh_drawable(sw, DefaultScreen(disp));
break;