mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +02:00
6888953: some calls to function-like macros are missing semicolons
Reviewed-by: pbk, kvn
This commit is contained in:
parent
83f1d02a67
commit
7e76feaf42
31 changed files with 36 additions and 35 deletions
|
@ -68,7 +68,7 @@ static const char* split_attrs(const char* &kind, char* buffer) {
|
|||
return attrs;
|
||||
} else {
|
||||
// park it in the buffer, so we can put a null on the end
|
||||
assert(!(kind >= buffer && kind < buffer+100), "not obviously in buffer")
|
||||
assert(!(kind >= buffer && kind < buffer+100), "not obviously in buffer");
|
||||
int klen = attrs - kind;
|
||||
strncpy(buffer, kind, klen);
|
||||
buffer[klen] = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue