diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2018-11-01 02:09:52 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2018-11-01 02:09:52 +0000 |
commit | 4d4b15a0e8524e15826ac932bd05252dbd246422 (patch) | |
tree | 2733e92ee403325b88fed63fcb339890232290af /source/compiler/aslerror.c | |
parent | 98117aa0347721c1b33897e435818da3673040ca (diff) |
Notes
Diffstat (limited to 'source/compiler/aslerror.c')
-rw-r--r-- | source/compiler/aslerror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/compiler/aslerror.c b/source/compiler/aslerror.c index 6d45cd400351a..10ea3ec1b4bd7 100644 --- a/source/compiler/aslerror.c +++ b/source/compiler/aslerror.c @@ -1097,7 +1097,7 @@ AslExpectException ( if (AslGbl_ExpectedMessagesIndex >= ASL_MAX_EXPECTED_MESSAGES) { - printf ("Too many messages have been registered as expected (max %u)\n", + printf ("Too many messages have been registered as expected (max %d)\n", ASL_MAX_DISABLED_MESSAGES); return (AE_LIMIT); } @@ -1144,7 +1144,7 @@ AslDisableException ( if (AslGbl_DisabledMessagesIndex >= ASL_MAX_DISABLED_MESSAGES) { - printf ("Too many messages have been disabled (max %u)\n", + printf ("Too many messages have been disabled (max %d)\n", ASL_MAX_DISABLED_MESSAGES); return (AE_LIMIT); } |