summaryrefslogtreecommitdiff
path: root/zen/format_unit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/format_unit.cpp')
-rw-r--r--zen/format_unit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/format_unit.cpp b/zen/format_unit.cpp
index 3e75278b..f2df4153 100644
--- a/zen/format_unit.cpp
+++ b/zen/format_unit.cpp
@@ -117,7 +117,7 @@ std::wstring roundToBlock(double timeInHigh,
if (unitLowPerHigh > blockSizeLow)
output += L" " + formatUnitTime(roundedtimeInLow % unitLowPerHigh, unitLow);
return output;
-};
+}
}
bgstack15