summaryrefslogtreecommitdiff
path: root/LibC/grp.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-31 17:31:23 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-31 17:31:23 +0100
commitffab6897aa1bc668f98130b4bb485a4602509938 (patch)
treea4d1933fc390ea0803bb3826353262fbf06b885f /LibC/grp.cpp
parent27fa09aee492e6c8da9168d24f0b1d2c5d2162d5 (diff)
downloadserenity-ffab6897aa1bc668f98130b4bb485a4602509938.zip
Big, possibly complete sweep of naming changes.
Diffstat (limited to 'LibC/grp.cpp')
-rw-r--r--LibC/grp.cpp2
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;