diff options
author | Hexxellor | 2017-03-28 15:32:26 -0500 |
---|---|---|
committer | devnoname120 | 2017-03-28 22:32:26 +0200 |
commit | 5568baf51c4b787ff3ce338948bc6faed34c2320 (patch) | |
tree | 3452914d79092392b496b0611bdccf3f67a4b818 /include/user/kernel/modulemgr.h | |
parent | Added 3 SceSysclibForDriver NIDs (diff) | |
download | vds-libraries-5568baf51c4b787ff3ce338948bc6faed34c2320.tar.gz |
Typo fixing, and misnamed struct (#151)
* Fixing Mostly Harmless Typos
This fixes a bunch of miscellaneous typos and grammatical mistakes in
the source which were mostly harmless with the exception of the
ScreenShotParam in psp2/screenshot.h which didn’t match the name of the
struct causing it to fail when using that header.
Diffstat (limited to 'include/user/kernel/modulemgr.h')
-rw-r--r-- | include/user/kernel/modulemgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/user/kernel/modulemgr.h b/include/user/kernel/modulemgr.h index d7ad72c..58ce37a 100644 --- a/include/user/kernel/modulemgr.h +++ b/include/user/kernel/modulemgr.h @@ -27,7 +27,7 @@ typedef struct SceUInt perms; //< probably rwx in low bits void *vaddr; //< address in memory SceUInt memsz; //< size in memory - SceUInt flags; //< meanig unknown + SceUInt flags; //< meaning unknown SceUInt res; //< unused? } SceKernelSegmentInfo; |