=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/top/top.c,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/top/top.c 1999/05/23 17:19:21 1.3 --- src/usr.bin/top/top.c 2000/10/04 21:19:38 1.4 *************** *** 1,4 **** ! /* $OpenBSD: top.c,v 1.3 1999/05/23 17:19:21 aaron Exp $ */ const char copyright[] = "Copyright (c) 1984 through 1996, William LeFebvre"; --- 1,4 ---- ! /* $OpenBSD: top.c,v 1.4 2000/10/04 21:19:38 millert Exp $ */ const char copyright[] = "Copyright (c) 1984 through 1996, William LeFebvre"; *************** *** 761,767 **** { if ((errmsg = kill_procs(tempbuf2)) != NULL) { ! new_message(MT_standout, errmsg); putchar('\r'); no_command = Yes; } --- 761,767 ---- { if ((errmsg = kill_procs(tempbuf2)) != NULL) { ! new_message(MT_standout, "%s", errmsg); putchar('\r'); no_command = Yes; } *************** *** 778,784 **** { if ((errmsg = renice_procs(tempbuf2)) != NULL) { ! new_message(MT_standout, errmsg); putchar('\r'); no_command = Yes; } --- 778,784 ---- { if ((errmsg = renice_procs(tempbuf2)) != NULL) { ! new_message(MT_standout, "%s", errmsg); putchar('\r'); no_command = Yes; }