aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2000-11-06 10:17:47 +0000
committerJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2000-11-06 10:17:47 +0000
commitbd1770647fd8bd8d1939a72db5a8d1fd4b3a4681 (patch)
tree05b70daa71a137ef05fdb67431f76f3444df996f
parent723048e92260ce39c95d841674eaf73e6348e841 (diff)
downloadsrc-bd1770647fd8bd8d1939a72db5a8d1fd4b3a4681.tar.gz
src-bd1770647fd8bd8d1939a72db5a8d1fd4b3a4681.zip
MFC: Format string fix.
Notes
Notes: svn path=/stable/2.2/; revision=68387
-rw-r--r--contrib/top/top.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/top/top.c b/contrib/top/top.c
index 2f6053c853c7..66588fdbfb79 100644
--- a/contrib/top/top.c
+++ b/contrib/top/top.c
@@ -825,7 +825,7 @@ Usage: %s [-ISbinqut] [-d x] [-s x] [-o field] [-U username] [number]\n",
{
if ((errmsg = renice_procs(tempbuf2)) != NULL)
{
- new_message(MT_standout, errmsg);
+ new_message(MT_standout, "%s", errmsg);
putchar('\r');
no_command = Yes;
}