diff options
author | Max Kellermann <max@duempel.org> | 2008-04-12 04:15:10 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:15:10 +0000 |
commit | a5aa5a0258fa7cf961536df46375b8f0b1d7b84e (patch) | |
tree | 0ede25948e57040b9a3d84635b0e0068f146882d /src/pcm_utils.h | |
parent | 4e0891337ad12435e248ead9d2eec4d4d20cd74b (diff) | |
download | mpd-a5aa5a0258fa7cf961536df46375b8f0b1d7b84e.tar.gz mpd-a5aa5a0258fa7cf961536df46375b8f0b1d7b84e.tar.xz mpd-a5aa5a0258fa7cf961536df46375b8f0b1d7b84e.zip |
yet more unsigned integers
git-svn-id: https://svn.musicpd.org/mpd/trunk@7287 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/pcm_utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pcm_utils.h b/src/pcm_utils.h index 752fac3e7..db7846598 100644 --- a/src/pcm_utils.h +++ b/src/pcm_utils.h @@ -35,8 +35,8 @@ typedef struct _ConvState { size_t dataInSize; size_t dataOutSize; mpd_sint8 lastChannels; - mpd_sint32 lastInSampleRate; - mpd_sint32 lastOutSampleRate; + mpd_uint32 lastInSampleRate; + mpd_uint32 lastOutSampleRate; #endif /* Strict C99 doesn't allow empty structs */ int error; |