From d09c06565ebf390d94acfc6929069c3ec17ee6bc Mon Sep 17 00:00:00 2001 From: exelix Date: Sun, 3 Mar 2019 18:54:45 +0100 Subject: [PATCH] Correct cmd_id type --- nx/source/services/lbl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/source/services/lbl.c b/nx/source/services/lbl.c index 2b8b1263..46e0a649 100644 --- a/nx/source/services/lbl.c +++ b/nx/source/services/lbl.c @@ -29,7 +29,7 @@ void lblExit(void) { } } -static Result _lblCmdNoIO(u32 cmd_id) { +static Result _lblCmdNoIO(u64 cmd_id) { IpcCommand c; ipcInitialize(&c); @@ -61,7 +61,7 @@ static Result _lblCmdNoIO(u32 cmd_id) { return rc; } -static Result _lblSwitchBacklight(u32 cmd_id, u64 fade_time) { +static Result _lblSwitchBacklight(u64 cmd_id, u64 fade_time) { IpcCommand c; ipcInitialize(&c);