summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/playback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 436e055794..972123f8fd 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -864,7 +864,7 @@ void audio_set_buffer_margin(int setting)
864{ 864{
865 static const int lookup[] = {5, 15, 30, 60, 120, 180, 300, 600}; 865 static const int lookup[] = {5, 15, 30, 60, 120, 180, 300, 600};
866 buffer_margin = lookup[setting]; 866 buffer_margin = lookup[setting];
867 logf("buffer margin: %d", buffer_margin); 867 logf("buffer margin: %ld", buffer_margin);
868 set_filebuf_watermark(buffer_margin, 0); 868 set_filebuf_watermark(buffer_margin, 0);
869} 869}
870#endif 870#endif