diff options
author | 2002-02-19 00:06:34 +0000 | |
---|---|---|
committer | 2002-02-19 00:06:34 +0000 | |
commit | 7f45b655e71914f1f8e21da58826f28f6df66af5 (patch) | |
tree | b4cb818185277468ab23bf9a052dbd7d61a13568 | |
parent | format string fixes (diff) | |
download | wireguard-openbsd-7f45b655e71914f1f8e21da58826f28f6df66af5.tar.xz wireguard-openbsd-7f45b655e71914f1f8e21da58826f28f6df66af5.zip |
oops, left out ;
-rw-r--r-- | usr.bin/vi/common/exf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/common/exf.c b/usr.bin/vi/common/exf.c index 0eeda6601c6..1e7e1d608a4 100644 --- a/usr.bin/vi/common/exf.c +++ b/usr.bin/vi/common/exf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exf.c,v 1.16 2002/02/18 23:56:10 ericj Exp $ */ +/* $OpenBSD: exf.c,v 1.17 2002/02/19 00:06:34 ericj Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 @@ -989,7 +989,7 @@ file_write(sp, fm, tm, name, flags) *--s = '.'; } } - msgq(sp, M_INFO, "%s", s) + msgq(sp, M_INFO, "%s", s); if (nf) FREE_SPACE(sp, p, 0); return (0); |