diff options
author | Johns <johns98@gmx.net> | 2012-03-02 00:28:53 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-03-02 00:28:53 +0100 |
commit | fd0ae12f24521aa43db84be802c0364846386b0c (patch) | |
tree | b718fe1e1feccbeb8ed45b38fa55a6b012818140 /audio.c | |
parent | db258a0fbd197157d8273e6e85d8da7ea15ee39f (diff) | |
download | vdr-plugin-softhddevice-fd0ae12f24521aa43db84be802c0364846386b0c.tar.gz vdr-plugin-softhddevice-fd0ae12f24521aa43db84be802c0364846386b0c.tar.bz2 |
Fix warning.
Diffstat (limited to 'audio.c')
-rw-r--r-- | audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1115,7 +1115,7 @@ static int AlsaSetup(int *freq, int *channels, int use_ac3) // update buffer snd_pcm_get_params(AlsaPCMHandle, &buffer_size, &period_size); - Info(_("audio/alsa: buffer size %lu %lums, period size %lu %lums\n"), + Info(_("audio/alsa: buffer size %lu %zdms, period size %lu %zdms\n"), buffer_size, snd_pcm_frames_to_bytes(AlsaPCMHandle, buffer_size) * 1000 / (AudioSampleRate * AudioChannels * AudioBytesProSample), period_size, |