summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sp_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_utils.c b/src/sp_utils.c
index 0ddc024..58d367f 100644
--- a/src/sp_utils.c
+++ b/src/sp_utils.c
@@ -213,7 +213,7 @@ bool sp_match_value(const char* value, const char* to_match, const pcre* rx) {
213 213
214 if (ret < 0) { 214 if (ret < 0) {
215 if (ret != PCRE_ERROR_NOMATCH) { 215 if (ret != PCRE_ERROR_NOMATCH) {
216 sp_log_err("regexp", "Something went wrong with a regexp."); 216 sp_log_err("regexp", "Something went wrong with a regexp (%d).", ret);
217 return false; 217 return false;
218 } 218 }
219 return false; 219 return false;