summaryrefslogtreecommitdiff
path: root/LibC/pwd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'LibC/pwd.cpp')
-rw-r--r--LibC/pwd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibC/pwd.cpp b/LibC/pwd.cpp
index 38f3020b26..d0280861e1 100644
--- a/LibC/pwd.cpp
+++ b/LibC/pwd.cpp
@@ -102,12 +102,12 @@ next_entry:
auto& e_dir = parts[5];
auto& e_shell = parts[6];
bool ok;
- uid_t e_uid = e_uid_string.toUInt(ok);
+ uid_t e_uid = e_uid_string.to_uint(ok);
if (!ok) {
fprintf(stderr, "getpwent(): Malformed UID on line %u\n", __pwdb_line_number);
goto next_entry;
}
- gid_t e_gid = e_gid_string.toUInt(ok);
+ gid_t e_gid = e_gid_string.to_uint(ok);
if (!ok) {
fprintf(stderr, "getpwent(): Malformed GID on line %u\n", __pwdb_line_number);
goto next_entry;