diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2015-04-09 23:08:47 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2015-04-09 23:08:47 +0000 |
commit | d29c30140bd8ea81e0530ad3975c977891ab9275 (patch) | |
tree | 7a91c0da98a89b4b10beda84d027d2c779673064 /source/components/utilities/utbuffer.c | |
parent | 2872953d4a9c9c4e0fc0b9ab37d0e962909625a0 (diff) |
Notes
Diffstat (limited to 'source/components/utilities/utbuffer.c')
-rw-r--r-- | source/components/utilities/utbuffer.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/components/utilities/utbuffer.c b/source/components/utilities/utbuffer.c index e677cf1c8fc6..cf99b769922e 100644 --- a/source/components/utilities/utbuffer.c +++ b/source/components/utilities/utbuffer.c @@ -158,6 +158,15 @@ AcpiUtDumpBuffer ( return; } + /* + * Add comment characters so rest of line is ignored when + * compiled + */ + if (j == 0) + { + AcpiOsPrintf ("// "); + } + BufChar = Buffer[(ACPI_SIZE) i + j]; if (ACPI_IS_PRINT (BufChar)) { |