Commit ba356647 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx/framework: Fix a typo.

parent 7a7a85aa
......@@ -83,13 +83,13 @@
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)];
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment