Fix typo in errf.h

This commit is contained in:
TuxSH 2017-03-01 11:22:42 +01:00 committed by Dave Murphy
parent 492fffd445
commit 2edbc6fe2e

View File

@ -51,7 +51,7 @@ typedef struct {
u64 appTitleId; ///< Application Title ID. u64 appTitleId; ///< Application Title ID.
union { union {
ERRF_ExceptionData exception_data; ///< Data for when type is ERRF_ERRTYPE_EXCEPTION ERRF_ExceptionData exception_data; ///< Data for when type is ERRF_ERRTYPE_EXCEPTION
char failure_mesg[60]; ///< String for when type is ERRF_ERRTYPE_FAILURE char failure_mesg[0x60]; ///< String for when type is ERRF_ERRTYPE_FAILURE
} data; ///< The different types of data for errors. } data; ///< The different types of data for errors.
} ERRF_FatalErrInfo; } ERRF_FatalErrInfo;