Oops, missed another printf() invocation with no format string.

This commit is contained in:
Kris Kennaway 2000-07-10 09:07:04 +00:00
parent 32d9afb622
commit 3d3f014fd4

View file

@ -177,7 +177,7 @@ print(pr, bp)
(void)printf(pr->fmt, (char *)bp);
break;
case F_TEXT:
(void)printf(pr->fmt);
(void)printf("%s", pr->fmt);
break;
case F_U:
conv_u(pr, bp);