1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:17:35 +00:00

LibC: Replace fprintf(stderr) with warnln()

This commit is contained in:
Linus Groh 2021-05-31 14:39:36 +01:00
parent 028a337a6d
commit 1b81b63663
3 changed files with 11 additions and 16 deletions

View file

@ -77,7 +77,7 @@ static bool parse_grpdb_entry(const String& line)
{
auto parts = line.split_view(':', true);
if (parts.size() != 4) {
fprintf(stderr, "getgrent(): Malformed entry on line %u: '%s' has %zu parts\n", s_line_number, line.characters(), parts.size());
warnln("getgrent(): Malformed entry on line {}: '{}' has {} parts", s_line_number, line, parts.size());
return false;
}
@ -89,7 +89,7 @@ static bool parse_grpdb_entry(const String& line)
auto gid = gid_string.to_uint();
if (!gid.has_value()) {
fprintf(stderr, "getgrent(): Malformed GID on line %u\n", s_line_number);
warnln("getgrent(): Malformed GID on line {}", s_line_number);
return false;
}
@ -119,7 +119,7 @@ struct group* getgrent()
return nullptr;
if (ferror(s_stream)) {
fprintf(stderr, "getgrent(): Read error: %s\n", strerror(ferror(s_stream)));
warnln("getgrent(): Read error: {}", strerror(ferror(s_stream)));
return nullptr;
}