summaryrefslogtreecommitdiffstats
path: root/libopkg/xregex.c
diff options
context:
space:
mode:
Diffstat (limited to 'libopkg/xregex.c')
-rw-r--r--libopkg/xregex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/xregex.c b/libopkg/xregex.c
index 2808dc6..f682d4c 100644
--- a/libopkg/xregex.c
+++ b/libopkg/xregex.c
@@ -35,7 +35,7 @@ static void print_regcomp_err(const regex_t *preg, int err)
{
unsigned int size;
char *error;
-
+
size = regerror(err, preg, 0, 0);
error = xcalloc(1, size);
regerror(err, preg, error, size);