]> granicus.if.org Git - taglib/commitdiff
Fixed identation
authorMichael Helmling <helmling@mathematik.uni-kl.de>
Sun, 26 Feb 2012 09:56:18 +0000 (10:56 +0100)
committerMichael Helmling <helmling@mathematik.uni-kl.de>
Sun, 26 Feb 2012 09:56:18 +0000 (10:56 +0100)
taglib/mpeg/id3v2/id3v2frame.cpp

index be566ca1a44ed46ef8b84ca6dc37ea1a8195d429..7a7c0da1a1810a6d82e446ab77d563c688221b9c 100644 (file)
@@ -382,9 +382,9 @@ static const char *frameTranslation[][2] = {
 Map<ByteVector, String> &idMap()
 {
   static Map<ByteVector, String> m;
-    if(m.isEmpty())
-      for(size_t i = 0; i < frameTranslationSize; ++i)
-        m[frameTranslation[i][0]] = frameTranslation[i][1];
+  if(m.isEmpty())
+    for(size_t i = 0; i < frameTranslationSize; ++i)
+      m[frameTranslation[i][0]] = frameTranslation[i][1];
   return m;
 }