From 5568baf51c4b787ff3ce338948bc6faed34c2320 Mon Sep 17 00:00:00 2001 From: Hexxellor Date: Tue, 28 Mar 2017 15:32:26 -0500 Subject: 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.--- include/kernel/udcd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/kernel/udcd.h') 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; -- cgit v1.2.3