Skip to content

Commit

Permalink
FIX: Resolved crash in lower level (debugging) value formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Feb 21, 2021
1 parent bbf89ca commit 9b5723a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/d-dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@
{
if (!series) return;
Debug_Fmt(
Str_Dump[0], //"%s Series %x %s: Wide: %2d Size: %6d - Bias: %d Tail: %d Rest: %d Flags: %x"
Str_Dump[0], //"%s Series %x: wide: %2d size: %6d bias: %d tail: %d rest: %d flags: %x \"%s\""
memo,
series,
(SERIES_LABEL(series) ? SERIES_LABEL(series) : "-"),
SERIES_WIDE(series),
SERIES_TOTAL(series),
SERIES_BIAS(series),
SERIES_TAIL(series),
SERIES_REST(series),
SERIES_FLAGS(series)
SERIES_FLAGS(series),
(SERIES_LABEL(series) ? SERIES_LABEL(series) : "-")
);
}

Expand Down

0 comments on commit 9b5723a

Please sign in to comment.