diff options
Diffstat (limited to '')
-rw-r--r-- | src/commands/ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/ls.c b/src/commands/ls.c index beebd19..bcc042c 100644 --- a/src/commands/ls.c +++ b/src/commands/ls.c @@ -58,8 +58,8 @@ static void list_file(struct dirent* file, struct Flags* flags, const char* dir_ if (flags->more_info) { - __uid_t uid = getuid(); - __gid_t gid = getgid(); + uid_t uid = getuid(); + gid_t gid = getgid(); char buf[PATH_MAX]; append_path(buf, dir_path, file); |