aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Wheeler <scott@directededge.com>2019-09-10 13:08:11 +0200
committerScott Wheeler <scott@directededge.com>2019-09-10 13:08:11 +0200
commitdc0f667a4ce308b16e0e80ff6bc558ac9c6e89f6 (patch)
tree65acc9de6f451ef87be6a7f716ed0116b4310bda
parent085180e9a477b590cf5fac3e5821825ddad79eb1 (diff)
No tabs in TagLib
-rw-r--r--taglib/CMakeLists.txt3
-rw-r--r--taglib/mpeg/mpegfile.cpp4
2 files changed, 3 insertions, 4 deletions
diff --git a/taglib/CMakeLists.txt b/taglib/CMakeLists.txt
index 77b0978d..ec30e14c 100644
--- a/taglib/CMakeLists.txt
+++ b/taglib/CMakeLists.txt
@@ -366,8 +366,7 @@ set_target_properties(tag PROPERTIES
PUBLIC_HEADER "${tag_HDRS}"
)
if(VISIBILITY_HIDDEN)
- set_target_properties(tag PROPERTIES C_VISIBILITY_PRESET hidden
- )
+ set_target_properties(tag PROPERTIES C_VISIBILITY_PRESET hidden)
endif()
if(BUILD_FRAMEWORK)
diff --git a/taglib/mpeg/mpegfile.cpp b/taglib/mpeg/mpegfile.cpp
index 517aea56..29a527e8 100644
--- a/taglib/mpeg/mpegfile.cpp
+++ b/taglib/mpeg/mpegfile.cpp
@@ -109,8 +109,8 @@ bool MPEG::File::isSupported(IOStream *stream)
const ByteVector buffer = Utils::readHeader(stream, bufferSize(), true, &headerOffset);
if(buffer.isEmpty())
- return false;
-
+ return false;
+
const long originalPosition = stream->tell();
AdapterFile file(stream);