diff --git a/Userland/Libraries/LibCore/System.cpp b/Userland/Libraries/LibCore/System.cpp index e80d0e14602..d9c6691e278 100644 --- a/Userland/Libraries/LibCore/System.cpp +++ b/Userland/Libraries/LibCore/System.cpp @@ -1057,7 +1057,7 @@ ErrorOr utime(StringView path, Optional maybe_buf) ErrorOr uname() { - utsname uts; + struct utsname uts; #ifdef AK_OS_SERENITY int rc = syscall(SC_uname, &uts); HANDLE_SYSCALL_RETURN_VALUE("uname", rc, uts);