From 2bcd6cddfb188c9852c40e8564801711caf46ade Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Tue, 8 Mar 2016 19:45:29 +1000 Subject: [PATCH] * regexps.c: fix format specifier --- src/regexps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regexps.c b/src/regexps.c index c396ed1..77ba8a0 100644 --- a/src/regexps.c +++ b/src/regexps.c @@ -61,7 +61,7 @@ f2b_regexlist_from_file(const char *path) { default: /* TODO: icase */ if ((regex = f2b_regex_create(p, false)) == NULL) { - f2b_log_msg(log_warn, "can't create regex from pattern at %s:%s: %s", path, linenum, p); + f2b_log_msg(log_warn, "can't create regex from pattern at %s:%d: %s", path, linenum, p); continue; } list = f2b_regexlist_append(list, regex);