From: Ken Hornstein Date: Mon, 22 Apr 2019 23:51:52 +0000 (-0400) Subject: Output the header name for the PUTADDR instruction X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/fc42ab983b41f9c344e4cf330f5e525cb2792683?hp=77ce4cf16b51da4e873519978a9808bfd83febaa Output the header name for the PUTADDR instruction --- diff --git a/uip/fmttest.c b/uip/fmttest.c index 1076be48..f352ce64 100644 --- a/uip/fmttest.c +++ b/uip/fmttest.c @@ -970,6 +970,11 @@ dumpone(struct format *fmt) case FT_LV_DAT: printf(", value dat[%d]", fmt->f_value); break; + + case FT_PUTADDR: + fputs(", header ", stdout); + litputs(fmt->f_text); + } putchar('\n'); }