diff options
Diffstat (limited to 'Libraries/LibC/serenity.cpp')
-rw-r--r-- | Libraries/LibC/serenity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibC/serenity.cpp b/Libraries/LibC/serenity.cpp index a75ab55791..ce665489b8 100644 --- a/Libraries/LibC/serenity.cpp +++ b/Libraries/LibC/serenity.cpp @@ -79,7 +79,7 @@ int purge(int mode) __RETURN_WITH_ERRNO(rc, rc, -1); } -int perf_event(int type, uintptr_t arg1, uintptr_t arg2) +int perf_event(int type, uintptr_t arg1, FlatPtr arg2) { int rc = syscall(SC_perf_event, type, arg1, arg2); __RETURN_WITH_ERRNO(rc, rc, -1); |