summaryrefslogtreecommitdiffstats
path: root/source/helper.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-01-09 22:40:11 +0100
committerDave Davenport <qball@gmpclient.org>2017-01-09 22:40:11 +0100
commit25dff63006663c947c17c4edbb85c6a12fcca799 (patch)
treec21ced366a7d71bf2fa539afd36743a7d5bd1056 /source/helper.c
parentca01af6338382c75f31555160f40aa5385be6521 (diff)
Improve error handling string.
Diffstat (limited to 'source/helper.c')
-rw-r--r--source/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/helper.c b/source/helper.c
index cb30a22d..c7d417db 100644
--- a/source/helper.c
+++ b/source/helper.c
@@ -248,7 +248,7 @@ GRegex **tokenize ( const char *input, int case_sensitive )
}
char *saveptr = NULL, *token;
- GRegex **retv = NULL;
+ GRegex **retv = NULL;
if ( !config.tokenize ) {
retv = g_malloc0 ( sizeof ( GRegex* ) * 2 );
retv[0] = (GRegex *) create_regex ( input, case_sensitive );