From 4e3e5f299081f9215a58acfe1b3c59f7aa3f4161 Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Fri, 28 Apr 2023 00:39:56 -0400 Subject: remove __ on uid and gid for alpine --- src/commands/ls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands/ls.c') 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); -- cgit v1.2.3-freya