Cleaned up warnings and adjusted CFLAGS

This commit cleans up warnings and adjusts CFLAGS.  Thanks to
samuel.thibault@ens-lyon.org.
This commit is contained in:
William Hubbs 2009-03-03 18:02:19 -06:00
commit bbf77d918d
3 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,7 @@
INSTALL = install
CFLAGS = -Wall
SRCS = \
cli.c \
espeakup.c \

View file

@ -136,6 +136,8 @@ void queue_process_entry(struct synth_t *s)
s->len = last->len;
error = speak_text(s);
break;
default:
break;
}
if (error == EE_OK)
queue_remove();

View file

@ -21,7 +21,9 @@
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <ctype.h>
#include "espeakup.h"