From 518cd28c03ed4b015d5485fd852d5be5bfda3e6a Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Tue, 4 Mar 2025 09:50:37 -0700 Subject: [PATCH] musikr: reformat --- musikr/src/main/cpp/taglib_jni.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/musikr/src/main/cpp/taglib_jni.cpp b/musikr/src/main/cpp/taglib_jni.cpp index 8edfac41f..65904aa5c 100644 --- a/musikr/src/main/cpp/taglib_jni.cpp +++ b/musikr/src/main/cpp/taglib_jni.cpp @@ -30,8 +30,6 @@ #include "taglib/vorbisfile.h" #include "taglib/wavfile.h" - - bool parseMpeg(const std::string &name, TagLib::File *file, JMetadataBuilder &jBuilder) { auto *mpegFile = dynamic_cast(file); @@ -101,7 +99,8 @@ bool parseFlac(const std::string &name, TagLib::File *file, try { jBuilder.setXiph(*xiphComment); } catch (std::exception &e) { - LOGE("Unable to parse Xiph comment in %s: %s", name.c_str(), e.what()); + LOGE("Unable to parse Xiph comment in %s: %s", name.c_str(), + e.what()); } } auto pics = flacFile->pictureList(); @@ -120,7 +119,8 @@ bool parseOpus(const std::string &name, TagLib::File *file, try { jBuilder.setXiph(*tag); } catch (std::exception &e) { - LOGE("Unable to parse Xiph comment in %s: %s", name.c_str(), e.what()); + LOGE("Unable to parse Xiph comment in %s: %s", name.c_str(), + e.what()); } } return true;