From 20e536f5fe85da8e75af961555cf94ab385a0c1e Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Sun, 24 Feb 2019 14:09:27 +0100 Subject: [PATCH] Build fix for src/mp3_audio_sink on x86_32 --- src/app/mp3_audio_sink/component.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/mp3_audio_sink/component.cc b/src/app/mp3_audio_sink/component.cc index 993e851..f089e41 100644 --- a/src/app/mp3_audio_sink/component.cc +++ b/src/app/mp3_audio_sink/component.cc @@ -164,7 +164,7 @@ struct Mp3_audio_sink::Decoder if (mpg123_feed(_mh, src, num_bytes)) die_mpg123(_mh, "failed to feed"); - off_t num = 0; + ::off_t num = 0; unsigned char *audio = nullptr; size_t bytes = 0;