diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2001-07-05 09:51:09 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2001-07-05 09:51:09 +0000 |
| commit | a015c9348c803a214819f1835f2578ef3c20bb89 (patch) | |
| tree | 6006e77cf1cf9d98520733e49acc09ef5b89a69f /usr.sbin/sysinstall/msg.c | |
| parent | 58059593e5a31304044c2d474361c943ee4c649a (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall/msg.c')
| -rw-r--r-- | usr.sbin/sysinstall/msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/msg.c b/usr.sbin/sysinstall/msg.c index a027905e287b..256346eb6baa 100644 --- a/usr.sbin/sysinstall/msg.c +++ b/usr.sbin/sysinstall/msg.c @@ -340,13 +340,13 @@ msgWeHaveOutput(char *fmt, ...) int msgSimpleConfirm(char *str) { - msgConfirm(str); + msgConfirm("%s", str); return DITEM_SUCCESS; } int msgSimpleNotify(char *str) { - msgNotify(str); + msgNotify("%s", str); return DITEM_SUCCESS; } |
