diff options
author | Reiko Asakura | 2020-09-19 16:13:58 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-09-19 16:13:58 -0400 |
commit | 4b52330f2df74aa1f48551973fd0d8f851123f42 (patch) | |
tree | 33d05d23766c42367d31cc15313ddb04be6c7f8b /include/user/notification_util.h | |
parent | Add SceKernelForMono functions (diff) | |
download | vds-libraries-4b52330f2df74aa1f48551973fd0d8f851123f42.tar.gz |
Make errors signed
Diffstat (limited to 'include/user/notification_util.h')
-rw-r--r-- | include/user/notification_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/user/notification_util.h b/include/user/notification_util.h index 4aa362a..0ec7c7f 100644 --- a/include/user/notification_util.h +++ b/include/user/notification_util.h @@ -10,7 +10,7 @@ extern "C" { /** * Errors */ -#define SCE_NOTIFICATION_UTIL_ERROR_INTERNAL 0x80106301 +#define SCE_NOTIFICATION_UTIL_ERROR_INTERNAL ((int)0x80106301) /** * BGDL-type notification event handler function |