diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | inotail.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ BINDIR = $(prefix)/bin MANDIR = $(prefix)/share/man/man1 CC := gcc -CFLAGS := $(CFLAGS) -W -Wall -pipe -D_USE_SOURCE -DVERSION="\"$(VERSION)\"" \ +CFLAGS := $(CFLAGS) -pipe -D_USE_SOURCE -DVERSION="\"$(VERSION)\"" -W -Wall \ -Wstrict-prototypes -Wsign-compare -Wshadow -Wchar-subscripts \ -Wmissing-declarations -Wpointer-arith -Wcast-align -Wmissing-prototypes @@ -513,7 +513,7 @@ int main(int argc, char **argv) files = malloc(n_files * sizeof(struct file_struct)); if (unlikely(!files)) { - fprintf(stderr, "Error: Could not allocate memory (%s)\n", strerror(errno)); + fprintf(stderr, "Error: Failed to allocate memory (%s)\n", strerror(errno)); exit(EXIT_FAILURE); } |