diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-01-27 23:12:18 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-01-27 23:12:18 +0000 |
commit | 647ee1ee21437c85266e9ea8a62abf220b72b83b (patch) | |
tree | 5b1c151e2db1ae51eb71fe89709f94c4bb228c94 | |
parent | fba4194f43f2c644460122c33e4b4eb82e70bf2d (diff) | |
download | mpd-647ee1ee21437c85266e9ea8a62abf220b72b83b.tar.gz mpd-647ee1ee21437c85266e9ea8a62abf220b72b83b.tar.xz mpd-647ee1ee21437c85266e9ea8a62abf220b72b83b.zip |
pcm_utils: remove redundant semi-colon (breaks compilation with some compilers)
git-svn-id: https://svn.musicpd.org/mpd/branches/branch-0.13.0-fixes@7170 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/pcm_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_utils.c b/src/pcm_utils.c index 534095620..807c04c78 100644 --- a/src/pcm_utils.c +++ b/src/pcm_utils.c @@ -305,7 +305,7 @@ static char *pcm_convertChannels(mpd_sint8 channels, char *inBuffer, { static char *buf; static size_t len; - char *outBuffer = NULL;; + char *outBuffer = NULL; mpd_sint16 *in; mpd_sint16 *out; int inSamples, i; |