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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62893

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);