mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 22:17:44 +00:00
Userland: Fix passing a non-format string to fprintf()
This commit is contained in:
parent
f808810d00
commit
3d936d51fd
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ int main(int argc, char** argv)
|
|||
} else {
|
||||
auto new_password = Core::get_password("New password: ");
|
||||
if (new_password.is_error()) {
|
||||
fprintf(stderr, strerror(new_password.error()));
|
||||
fprintf(stderr, "%s\n", strerror(new_password.error()));
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue