summaryrefslogtreecommitdiffstats
path: root/polyp/util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-09-16 23:34:25 +0000
committerLennart Poettering <lennart@poettering.net>2004-09-16 23:34:25 +0000
commit078f2aa860cc0e0063dd6b4e8ff6ca1cbf5fd45b (patch)
treea7f70bb0783cb94639bd8b58f00e160898d2af5a /polyp/util.c
parent19294e4b388571ba45162b3704f8aacd38e72158 (diff)
gcc 2.95 compatibility, take 2
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@208 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp/util.c')
-rw-r--r--polyp/util.c2
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);
}