diff --git a/src/platforms/posix/main.cpp b/src/platforms/posix/main.cpp index 4d6791fdf4..fb5b7fe751 100644 --- a/src/platforms/posix/main.cpp +++ b/src/platforms/posix/main.cpp @@ -373,8 +373,10 @@ int main(int argc, char **argv) } default: // any other input - cout << c; - mystr += c; + if (c > 3) { + cout << c; + mystr += c; + } break; } }