[vlc-devel] commit: macosx/framework: Fix a typo. (Pierre d'Herbemont )
git version control
git at videolan.org
Wed Aug 26 23:26:05 CEST 2009
vlc | branch: master | Pierre d'Herbemont <pdherbemont at free.fr> | Wed Aug 26 23:23:12 2009 +0200| [ba356647b92733db5854ea24c0c47f80164c0842] | committer: Pierre d'Herbemont
macosx/framework: Fix a typo.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ba356647b92733db5854ea24c0c47f80164c0842
---
projects/macosx/framework/Sources/VLCTime.m | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/projects/macosx/framework/Sources/VLCTime.m b/projects/macosx/framework/Sources/VLCTime.m
index bccd8ea..de36bd1 100644
--- a/projects/macosx/framework/Sources/VLCTime.m
+++ b/projects/macosx/framework/Sources/VLCTime.m
@@ -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)];
}
More information about the vlc-devel
mailing list