]> git.sesse.net Git - vlc/commitdiff
macosx/framework: Fix a typo.
authorPierre d'Herbemont <pdherbemont@free.fr>
Wed, 26 Aug 2009 21:23:12 +0000 (23:23 +0200)
committerPierre d'Herbemont <pdherbemont@free.fr>
Wed, 26 Aug 2009 21:26:02 +0000 (23:26 +0200)
projects/macosx/framework/Sources/VLCTime.m

index bccd8ea1346b6fee4f71065eff34af03dd6fa719..de36bd14f3ab2648a75aa58b8e671d94dd9089d0 100644 (file)
         long long positiveDuration = llabs(duration);
         if( positiveDuration > 3600 )
             return [NSString stringWithFormat:@"%s%01d:%02d:%02d",
-                        duration < 0 ? "-" : ""
+                        duration < 0 ? "-" : "",
                 (long) (positiveDuration / 3600),
                 (long)((positiveDuration / 60) % 60),
                 (long) (positiveDuration % 60)];
         else
             return [NSString stringWithFormat:@"%s%02d:%02d",
-                            duration < 0 ? "-" : ""
+                            duration < 0 ? "-" : "",
                     (long)((positiveDuration / 60) % 60),
                     (long) (positiveDuration % 60)];
     }