From 07228ff56ad64f5df690d12302fa189e97e0af86 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 2 Jul 2016 14:00:52 +0200 Subject: [PATCH] tag/Id3Load: use offset_type instead of off_t --- src/tag/Id3Load.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tag/Id3Load.cxx b/src/tag/Id3Load.cxx index 2d1162ccf..d5a1b92bd 100644 --- a/src/tag/Id3Load.cxx +++ b/src/tag/Id3Load.cxx @@ -87,7 +87,7 @@ ReadId3Tag(InputStream &is) } static UniqueId3Tag -ReadId3Tag(InputStream &is, off_t offset) +ReadId3Tag(InputStream &is, offset_type offset) { if (!is.Seek(offset, IgnoreError())) return nullptr; @@ -107,7 +107,7 @@ ReadId3v1Tag(InputStream &is) } static UniqueId3Tag -ReadId3v1Tag(InputStream &is, off_t offset) +ReadId3v1Tag(InputStream &is, offset_type offset) { if (!is.Seek(offset, IgnoreError())) return nullptr;