diff --git a/uppsrc/Core/Format.cpp b/uppsrc/Core/Format.cpp index 723145e6f..f03a5d322 100644 --- a/uppsrc/Core/Format.cpp +++ b/uppsrc/Core/Format.cpp @@ -720,6 +720,8 @@ String FloatFormatter(const Formatting& f) sprintf(ah, fmt, d); return String(ah, n); } + if(n < 0) + return String(); return String(h, n); }