mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 23:11:38 +00:00
Escape strings for reloc dumps.
Line feeds messing up the output wasn't nice :P.
This commit is contained in:
parent
1dd8f34190
commit
f002f3ad7a
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ qfo_relocs (qfo_t *qfo)
|
|||
case rel_def_string:
|
||||
printf (" def@%d:%x string:%x `%s'",
|
||||
reloc->space, reloc->offset, reloc->target,
|
||||
QFO_GETSTR (qfo, reloc->target));
|
||||
quote_string (QFO_GETSTR (qfo, reloc->target)));
|
||||
break;
|
||||
case rel_def_field:
|
||||
def = qfo->defs + reloc->target;
|
||||
|
|
Loading…
Reference in a new issue