diff --git a/Userland/more.cpp b/Userland/more.cpp index 6371ef01f4..79c165b540 100644 --- a/Userland/more.cpp +++ b/Userland/more.cpp @@ -34,7 +34,7 @@ int main(int argc, char** argv) auto* str = fgets(buffer, sizeof(buffer), stdin); if (!str) break; - printf(str); + printf("%s", str); ++lines_printed; if ((lines_printed % (ws.ws_row - 1)) == 0) { wait_for_key();