diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2019-08-16 17:03:01 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2019-08-16 17:03:01 +0000 |
| commit | e63852a7532181a14cec2928b31af2209e98414a (patch) | |
| tree | be94508475add18bbaa0cacd6c467983d2b8a443 /source/compiler/dtfield.c | |
| parent | 0ada71f05e76bf61eb2d5aba852db00705edd364 (diff) | |
Diffstat (limited to 'source/compiler/dtfield.c')
| -rw-r--r-- | source/compiler/dtfield.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/compiler/dtfield.c b/source/compiler/dtfield.c index 74ebf570bfb2..1f7167618dc4 100644 --- a/source/compiler/dtfield.c +++ b/source/compiler/dtfield.c @@ -280,7 +280,9 @@ DtCompileString ( if (Length > ByteLength) { - sprintf (AslGbl_MsgBuffer, "Maximum %u characters", ByteLength); + sprintf (AslGbl_MsgBuffer, + "Maximum %u characters, found %u characters [%s]", + ByteLength, Length, Field->Value); DtError (ASL_ERROR, ASL_MSG_STRING_LENGTH, Field, AslGbl_MsgBuffer); Length = ByteLength; } |
