diff options
Diffstat (limited to 'polyp/util.c')
-rw-r--r-- | polyp/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polyp/util.c b/polyp/util.c index bb71bbf9..24773a7b 100644 --- a/polyp/util.c +++ b/polyp/util.c @@ -385,7 +385,7 @@ char *pa_split(const char *c, const char *delimiter, const char**state) { *state = current+l; if (**state) - *state++; + (*state)++; return pa_xstrndup(current, l); } |