mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 14:39:37 +00:00
Don't call printf() with no format string.
This commit is contained in:
parent
084c79f69e
commit
32d9afb622
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62892
@ -106,7 +106,7 @@ display()
|
|||||||
(void)printf(pr->fmt, (quad_t)eaddress);
|
(void)printf(pr->fmt, (quad_t)eaddress);
|
||||||
break;
|
break;
|
||||||
case F_TEXT:
|
case F_TEXT:
|
||||||
(void)printf(pr->fmt);
|
(void)printf("%s", pr->fmt);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user