diff --git a/uppdev/Format2/Format2.cpp b/uppdev/Format2/Format2.cpp index c64c40805..320ee7d44 100644 --- a/uppdev/Format2/Format2.cpp +++ b/uppdev/Format2/Format2.cpp @@ -4,6 +4,8 @@ using namespace Upp; CONSOLE_APP_MAIN { - DDUMP(Format("|%*=s|\n", 20, "test")); + DDUMP(Format("|%*s|", 20, "test")); + DDUMP(Format("|%*s|", 400, "test")); + DDUMP(Format("|%*=s|", 20, "test")); + DDUMP(Format("|%*=s|", 400, "test")); } -