1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 01:27:42 +00:00

Kernel: Oops, fix broken sys$uname() function definition

This commit is contained in:
Andreas Kling 2021-02-24 14:41:58 +01:00
parent 141e6724d1
commit ce1775d81d

View file

@ -28,7 +28,7 @@
namespace Kernel { namespace Kernel {
int Process::sys$uname(Userspace<utsname*> buf) int Process::sys$uname(Userspace<utsname*> user_buf)
{ {
extern String* g_hostname; extern String* g_hostname;
extern Lock* g_hostname_lock; extern Lock* g_hostname_lock;