diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-12-02 14:00:35 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-12-02 14:00:35 +0000 |
| commit | f27a230c7aa5230aa8636a5c3095920eed3f6d24 (patch) | |
| tree | 98df79d36c8dd3e7a6a9ee7422e20b16908dd3cf /buildtool.cpp | |
| parent | fix for bug #1600900, freetype internals must not be used. (diff) | |
| download | inkscape-f27a230c7aa5230aa8636a5c3095920eed3f6d24.tar.gz inkscape-f27a230c7aa5230aa8636a5c3095920eed3f6d24.zip | |
fix minutes/seconds calc. oops.
(bzr r2061)
Diffstat (limited to 'buildtool.cpp')
| -rw-r--r-- | buildtool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtool.cpp b/buildtool.cpp index af1b033e7..e61caf9c7 100644 --- a/buildtool.cpp +++ b/buildtool.cpp @@ -8208,7 +8208,7 @@ timeDiffString(struct timeval &x, struct timeval &y) int millis = (int)((microsX - microsY)/1000); int minutes = seconds/60; - seconds += minutes*60; + seconds -= minutes*60; char buf[80]; snprintf(buf, 79, "%dm %d.%03ds", minutes, seconds, millis); String ret = buf; |
