aboutsummaryrefslogtreecommitdiff
path: root/src/compress.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-01-26 12:46:37 +0000
committerEric Wong <normalperson@yhbt.net>2008-01-26 12:46:37 +0000
commitc3ba1bb95670abd4ba64445fa7edaea9cfa9e387 (patch)
tree0e1374c65c72892b075b7ce841b05a9a04751f7f /src/compress.h
parent0659d359513107e3ed4b66a471f3cb3939a09521 (diff)
fixed "comparison between signed and unsigned"
Signed-off-by: Eric Wong <normalperson@yhbt.net> git-svn-id: https://svn.musicpd.org/mpd/trunk@7146 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/compress.h')
-rw-r--r--src/compress.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compress.h b/src/compress.h
index 42638f78..c0cee782 100644
--- a/src/compress.h
+++ b/src/compress.h
@@ -38,7 +38,7 @@ void CompressCfg(int monitor,
int target,
int maxgain,
int smooth,
- int buckets);
+ unsigned buckets);
void CompressDo(void *data, unsigned int numSamples);