summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 60ace87)
raw | patch | inline | side by side (parent: 60ace87)
author | Junio C Hamano <junkio@cox.net> | |
Wed, 22 Feb 2006 02:13:32 +0000 (18:13 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 22 Feb 2006 02:13:32 +0000 (18:13 -0800) |
Perl is not C and does not truncate the division result. Arghh!
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-format-patch.sh | patch | blob | history |
diff --git a/git-format-patch.sh b/git-format-patch.sh
index e54c9e4a9407da56ff7e9da81f6105c864ba1d5d..eb75de46019284df4e9e2862736d232c230a5596 100755 (executable)
--- a/git-format-patch.sh
+++ b/git-format-patch.sh
sub show_date {
my ($time, $tz) = @_;
my $minutes = abs($tz);
- $minutes = ($minutes / 100) * 60 + ($minutes % 100);
+ $minutes = int($minutes / 100) * 60 + ($minutes % 100);
if ($tz < 0) {
$minutes = -$minutes;
}