diff options
author | Yifan Lu | 2016-11-21 17:29:39 -0600 |
---|---|---|
committer | Yifan Lu | 2016-11-21 17:29:39 -0600 |
commit | 9cf74281e9bd50e6def5bd263f688dff8e44bba8 (patch) | |
tree | 196ad901535def9f4bd5913379af47a3ea0f9a80 | |
parent | Added sysmodule internal calls (diff) | |
download | vds-libraries-9cf74281e9bd50e6def5bd263f688dff8e44bba8.tar.gz |
Added const to path for scePromoterUtilityPromotePkg
Diffstat (limited to '')
-rw-r--r-- | include/user/promoterutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/user/promoterutil.h b/include/user/promoterutil.h index 374141f..e6244d0 100644 --- a/include/user/promoterutil.h +++ b/include/user/promoterutil.h @@ -16,7 +16,7 @@ int scePromoterUtilityInit(void); int scePromoterUtilityExit(void); int scePromoterUtilityDeletePkg(void *unk); int scePromoterUtilityUpdateLiveArea(ScePromoterUtilityLAUpdate *args); -int scePromoterUtilityPromotePkg(char *path, int unk); +int scePromoterUtilityPromotePkg(const char *path, int unk); int scePromoterUtilityPromotePkgWithRif(const char *path, int unk); int scePromoterUtilityGetState(int *state); int scePromoterUtilityGetResult(int *res); |