summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/grijp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grijp.c b/src/grijp.c
index 8e9dba6..7d33f83 100644
--- a/src/grijp.c
+++ b/src/grijp.c
@@ -104,7 +104,7 @@ static int process_regex(char *fname, bool isstdin) {
if (icase) flags |= REG_ICASE;
if (regcomp(regexp, patterns[i], flags) != 0) {
- // TODO: error
+ fprintf(stderr, "grijp: fout tijdens compileren van reguliere expressie\n");
return 1;
}