X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=sdl_gui.c;h=a8c0327ad860a09ad2100c84e52735486510e128;hp=d0b83f09a3cf8a9b81b2f2e5f78d3465be3d998d;hb=3c5c2ebfc2d651f2f77d0df89cbb58a2068bcad0;hpb=f2a7b00cf72104a38733b7bf3add9fb19dd71c93 diff --git a/sdl_gui.c b/sdl_gui.c index d0b83f09..a8c0327a 100644 --- a/sdl_gui.c +++ b/sdl_gui.c @@ -119,7 +119,7 @@ struct font fonts[] = { static struct stat_item stat_items[NUM_STAT_ITEMS]; -void para_log(__unused int ll, __unused const char* fmt,...) /* no logging */ +void para_log(__a_unused int ll, __a_unused const char* fmt,...) /* no logging */ { } @@ -699,13 +699,11 @@ static int draw_status(int pipe) tv.tv_usec = 3000000; FD_ZERO(&rfds); FD_SET(pipe, &rfds); - ret = select(pipe + 1, &rfds, NULL, NULL, &tv); -// printf("select returned %d\n", ret); + ret = para_select(pipe + 1, &rfds, NULL, &tv); if (ret <= 0) return 0; if (read_audiod_pipe(pipe, update_status) > 0) return 1; -// clear_all_items(); free(stat_items[SI_STATUS_BAR].content); stat_items[SI_STATUS_BAR].content = para_strdup("audiod not running!?\n");