diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | pavolctld.c | 6 |
2 files changed, 3 insertions, 7 deletions
@@ -1,7 +1,5 @@ -# Makefile for gpt program - CC = gcc -CFLAGS = -Wall +CFLAGS = -Wall -Ofast LDFLAGS = -lpulse TARGET = pavolctld diff --git a/pavolctld.c b/pavolctld.c index 2e6d13d..a4e108b 100644 --- a/pavolctld.c +++ b/pavolctld.c @@ -138,10 +138,8 @@ int main() { // main loop pa_threaded_mainloop_start(mainloop); - while(1) { - if (fgets(stdin_buffer, sizeof(stdin_buffer), stdin) != NULL) - handle_command(context, stdin_buffer); - } + while (fgets(stdin_buffer, sizeof(stdin_buffer), stdin) != NULL) + handle_command(context, stdin_buffer); // clean up pa_context_disconnect(context); |