diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-15 13:27:52 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-15 13:27:52 +0200 |
commit | 85daa93ae33d2336b4146ad18bf67a3e6c6202e9 (patch) | |
tree | 7210c4cffa9d2f65c2a5f78a89300c2097972098 /src | |
parent | 68210d023a206c5f15536fcf87811f75fb69eb0e (diff) | |
download | xine-lib-85daa93ae33d2336b4146ad18bf67a3e6c6202e9.tar.gz xine-lib-85daa93ae33d2336b4146ad18bf67a3e6c6202e9.tar.bz2 |
Use the same type for l and size.
Diffstat (limited to 'src')
-rw-r--r-- | src/audio_out/audio_pulse_out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_out/audio_pulse_out.c b/src/audio_out/audio_pulse_out.c index 353bee3a4..d93c9d279 100644 --- a/src/audio_out/audio_pulse_out.c +++ b/src/audio_out/audio_pulse_out.c @@ -342,7 +342,7 @@ static int ao_pulse_write(ao_driver_t *this_gen, int16_t *data, uint32_t num_frames) { pulse_driver_t *this = (pulse_driver_t *) this_gen; - int size = num_frames * this->bytes_per_frame; + size_t size = num_frames * this->bytes_per_frame; int ret = 0; if ( !this->stream || !this->pa_class->context) |