Fix bug in error message.
parent
1cb934b3aa
commit
7ee3ffd43f
|
@ -518,7 +518,8 @@ static char *flat_read_stringtable(struct inbuf *inb, int offset)
|
|||
p = inb->base + offset;
|
||||
while (1) {
|
||||
if (p >= inb->limit)
|
||||
die("String offset %d overruns string table\n");
|
||||
die("String offset %d overruns string table\n",
|
||||
offset);
|
||||
|
||||
if (*p == '\0')
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue