diff options
| author | msaitoh <msaitoh@NetBSD.org> | 2019-11-17 13:36:18 +0000 |
|---|---|---|
| committer | msaitoh <msaitoh@NetBSD.org> | 2019-11-17 13:36:18 +0000 |
| commit | 0b1286e2aef2ff2d0efaf1e768eba25ee3c87bdb (patch) | |
| tree | 00ed9c854d09cd43c149bba25204a2ba70e6d3b1 /usr.bin | |
| parent | 47a53e9532fd3ffe908df92d59dd002bd8f2d0da (diff) | |
Pull up following revision(s) (requested by martin in ticket #433):
usr.bin/msgc/msg_sys.def: revision 1.48
msg_table_add(): fix mishap in the format safety changes in r1.45
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/msgc/msg_sys.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/msgc/msg_sys.def b/usr.bin/msgc/msg_sys.def index d9cbbdd0165..c45931344b1 100644 --- a/usr.bin/msgc/msg_sys.def +++ b/usr.bin/msgc/msg_sys.def @@ -1,4 +1,4 @@ -/* $NetBSD: msg_sys.def,v 1.47 2019/06/25 21:09:33 joerg Exp $ */ +/* $NetBSD: msg_sys.def,v 1.47.2.1 2019/11/17 13:36:18 msaitoh Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -653,7 +653,7 @@ void msg_table_add(msg msg_no) { - msg_printf("%s", msg_string(msg_no)); + msg_fmt_table_add(msg_no, ""); } void __printflike(2, 3) |
