diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 17:31:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 17:31:23 +0100 |
commit | ffab6897aa1bc668f98130b4bb485a4602509938 (patch) | |
tree | a4d1933fc390ea0803bb3826353262fbf06b885f /LibC/grp.cpp | |
parent | 27fa09aee492e6c8da9168d24f0b1d2c5d2162d5 (diff) | |
download | serenity-ffab6897aa1bc668f98130b4bb485a4602509938.zip |
Big, possibly complete sweep of naming changes.
Diffstat (limited to 'LibC/grp.cpp')
-rw-r--r-- | LibC/grp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/grp.cpp b/LibC/grp.cpp index c4f2af5f99..cd0de5f152 100644 --- a/LibC/grp.cpp +++ b/LibC/grp.cpp @@ -98,7 +98,7 @@ next_entry: auto& e_gid_string = parts[2]; auto& e_members_string = parts[3]; bool ok; - gid_t e_gid = e_gid_string.toUInt(ok); + gid_t e_gid = e_gid_string.to_uint(ok); if (!ok) { fprintf(stderr, "getgrent(): Malformed GID on line %u\n", __grdb_line_number); goto next_entry; |