mirror of
https://github.com/acpica/acpica/
synced 2025-02-24 09:24:08 +03:00
date 99.04.08.21.23.00; author rmoore1; state Exp;
This commit is contained in:
parent
faf69915eb
commit
6fd3567c08
@ -12,7 +12,6 @@
|
||||
|__________________________________________________________________________
|
||||
|
|
||||
| excommon.c - Debug and error reporting routines
|
||||
|
|
||||
|__________________________________________________________________________
|
||||
|
||||
*/
|
||||
@ -747,7 +746,11 @@ DumpBuf (char *Buffer, UINT32 Count, INT32 Flags, INT32 ComponentId)
|
||||
if (i + j >= Count)
|
||||
goto cleanup;
|
||||
|
||||
OsdPrintf (NULL, "%02X ", Buffer[i + j]);
|
||||
|
||||
/* Make sure that the char doesn't get sign-extended! */
|
||||
|
||||
BufChar = Buffer[i + j];
|
||||
OsdPrintf (NULL, "%02X ", BufChar);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user