From 90a4bae6ccf7496b85ff0e41901bda8f383fc4d2 Mon Sep 17 00:00:00 2001 From: Tsuda Kageyu Date: Sun, 2 Jun 2013 02:37:15 +0900 Subject: [PATCH] Fixed compilation error with GCC4.2 --- taglib/toolkit/tfilestream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taglib/toolkit/tfilestream.cpp b/taglib/toolkit/tfilestream.cpp index 9cd1be42..3bf68e0e 100644 --- a/taglib/toolkit/tfilestream.cpp +++ b/taglib/toolkit/tfilestream.cpp @@ -45,7 +45,7 @@ namespace typedef FileName FileNameHandle; typedef HANDLE FileHandle; - const uint BufferSize = 8192; + const TagLib::uint BufferSize = 8192; const FileHandle InvalidFileHandle = INVALID_HANDLE_VALUE; inline FileHandle openFile(const FileName &path, bool readOnly) @@ -122,7 +122,7 @@ namespace typedef FILE* FileHandle; - const uint BufferSize = 8192; + const TagLib::uint BufferSize = 8192; const FileHandle InvalidFileHandle = 0; inline FileHandle openFile(const FileName &path, bool readOnly)