diff --git a/Userland/Shell/Builtin.cpp b/Userland/Shell/Builtin.cpp index 60e499e43c..617adb9498 100644 --- a/Userland/Shell/Builtin.cpp +++ b/Userland/Shell/Builtin.cpp @@ -268,7 +268,7 @@ int Shell::builtin_cdh(int argc, const char** argv) } for (ssize_t i = cd_history.size() - 1; i >= 0; --i) - printf("%lu: %s\n", cd_history.size() - i, cd_history.at(i).characters()); + printf("%zu: %s\n", cd_history.size() - i, cd_history.at(i).characters()); return 0; }