mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-15 16:44:36 +02:00
6888954: argument formatting for assert() and friends
Reviewed-by: kvn, twisti, apetrusenko, never, dcubed
This commit is contained in:
parent
7e76feaf42
commit
99196ff9ca
37 changed files with 396 additions and 211 deletions
|
@ -57,7 +57,7 @@ SignatureIterator::SignatureIterator(Thread *thread, symbolOop signature) {
|
|||
}
|
||||
|
||||
void SignatureIterator::expect(char c) {
|
||||
if (_signature->byte_at(_index) != c) fatal1("expecting %c", c);
|
||||
if (_signature->byte_at(_index) != c) fatal(err_msg("expecting %c", c));
|
||||
_index++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue