diff options
author | kim <kim@pkgsrc.org> | 2000-09-01 15:23:51 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 2000-09-01 15:23:51 +0000 |
commit | b6bc871edfab58e8d02784f100d1bc476e51de07 (patch) | |
tree | 65bfcb88556ad70a086ec050d1394f9887061c1d /misc/screen/patches | |
parent | abdd9fbf7bbfc45cd1907fb1940e828fbc07dfdb (diff) | |
download | pkgsrc-b6bc871edfab58e8d02784f100d1bc476e51de07.tar.gz |
The format string needs to be "%s", not just "%".
Diffstat (limited to 'misc/screen/patches')
-rw-r--r-- | misc/screen/patches/patch-ah | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/screen/patches/patch-ah b/misc/screen/patches/patch-ah index 8551ab49ef8..0c8b6e104bd 100644 --- a/misc/screen/patches/patch-ah +++ b/misc/screen/patches/patch-ah @@ -1,13 +1,13 @@ -$NetBSD: patch-ah,v 1.1 2000/09/01 14:39:54 wiz Exp $ +$NetBSD: patch-ah,v 1.2 2000/09/01 15:23:51 kim Exp $ ---- screen.c.orig Wed Sep 1 23:57:25 1999 -+++ screen.c +--- screen.c.orig Wed Sep 1 17:57:25 1999 ++++ screen.c Fri Sep 1 11:22:45 2000 @@ -2311,7 +2311,7 @@ else if (visual && !D_VB && (!D_status || !D_status_bell)) { D_status_delayed = -1; - Msg(0, VisualBellString); -+ Msg(0, "%", VisualBellString); ++ Msg(0, "%s", VisualBellString); if (D_status) { D_status_bell = 1; |