mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
Shell: Use correct printf format string for size_t
This commit is contained in:
parent
714bd011e1
commit
e32692ea68
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue