diff options
Diffstat (limited to 'source/components/utilities/utstring.c')
-rw-r--r-- | source/components/utilities/utstring.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/components/utilities/utstring.c b/source/components/utilities/utstring.c index 9e58908..9798700 100644 --- a/source/components/utilities/utstring.c +++ b/source/components/utilities/utstring.c @@ -395,7 +395,8 @@ ErrorExit: * FUNCTION: AcpiUtPrintString * * PARAMETERS: String - Null terminated ASCII string - * MaxLength - Maximum output length + * MaxLength - Maximum output length. Used to constrain the + * length of strings during debug output only. * * RETURN: None * @@ -407,7 +408,7 @@ ErrorExit: void AcpiUtPrintString ( char *String, - UINT8 MaxLength) + UINT16 MaxLength) { UINT32 i; |