summaryrefslogtreecommitdiff
path: root/include/kernel/udcd.h
diff options
context:
space:
mode:
authorHexxellor2017-03-28 15:32:26 -0500
committerdevnoname1202017-03-28 22:32:26 +0200
commit5568baf51c4b787ff3ce338948bc6faed34c2320 (patch)
tree3452914d79092392b496b0611bdccf3f67a4b818 /include/kernel/udcd.h
parentAdded 3 SceSysclibForDriver NIDs (diff)
downloadvds-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 '')
-rw-r--r--include/kernel/udcd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kernel/udcd.h b/include/kernel/udcd.h
index 3eaabfb..3b0e359 100644
--- a/include/kernel/udcd.h
+++ b/include/kernel/udcd.h
@@ -415,7 +415,7 @@ struct SceUdcdDeviceRequest {
void (*onComplete)(struct SceUdcdDeviceRequest *req);
/* Number of transmitted bytes */
int transmitted;
- /* Return code of the request, 0 == success, -3 == cancelled */
+ /* Return code of the request, 0 == success, -3 == canceled */
int returnCode;
/* Link pointer to next request used by the driver, set it to NULL */
struct SceUdcdDeviceRequest *next;