diff options
author | Max Kellermann <max@duempel.org> | 2008-04-12 04:15:58 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:15:58 +0000 |
commit | 1d18ca69092c4ea25aea7da87907c879af435a3d (patch) | |
tree | 82915f8de57f680e1182e9776351a8ea0b4efade /src/audioOutput.h | |
parent | 01bf82289659b334a837062aef0c4814e26ed4fb (diff) | |
download | mpd-1d18ca69092c4ea25aea7da87907c879af435a3d.tar.gz mpd-1d18ca69092c4ea25aea7da87907c879af435a3d.tar.xz mpd-1d18ca69092c4ea25aea7da87907c879af435a3d.zip |
use size_t in audioOutput.c internals
git-svn-id: https://svn.musicpd.org/mpd/trunk@7294 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/audioOutput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutput.h b/src/audioOutput.h index 577ba2014..3cede2e30 100644 --- a/src/audioOutput.h +++ b/src/audioOutput.h @@ -70,7 +70,7 @@ struct _AudioOutput { AudioFormat reqAudioFormat; ConvState convState; char *convBuffer; - int convBufferLen; + size_t convBufferLen; int sameInAndOutFormats; void *data; |