From 5663ddbdd5d9b1117cf4046fdc515edd621f0121 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Tue, 30 May 2023 19:52:17 +0200 Subject: [PATCH] fix (libnx): removed '#' that threw a compiler error xD --- libnx/src/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnx/src/syscall.c b/libnx/src/syscall.c index 8c2147e..426f1ae 100644 --- a/libnx/src/syscall.c +++ b/libnx/src/syscall.c @@ -112,7 +112,7 @@ uint64_t nx_drv_register(uint64_t fd) { } uint64_t nx_drv_init(void* conf) { - return syscall_perform(NX_DRV_INIT, (uint64_t#)conf, 0, 0, 0); + return syscall_perform(NX_DRV_INIT, (uint64_t)conf, 0, 0, 0); } uint64_t nx_drv_create_command_buffer(void* addr, uint64_t len) {