diff options
author | obrien <obrien@FreeBSD.org> | 2001-07-13 16:30:11 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-07-13 16:30:11 +0000 |
commit | 15642ccfc39a409defc439fc027618bd8f0d909a (patch) | |
tree | e47aecae87be7a7d8383bcc2591548b0210568df /usr.sbin/kbdcontrol | |
parent | e01533d08af3d3d2dbdcfcc82678b54dd9cef54d (diff) | |
download | FreeBSD-src-15642ccfc39a409defc439fc027618bd8f0d909a.zip FreeBSD-src-15642ccfc39a409defc439fc027618bd8f0d909a.tar.gz |
Repeat after me: "when reporting `file not found', perform a little bit of
useful HCI consideration and tell which file was being looked for".
Diffstat (limited to 'usr.sbin/kbdcontrol')
-rw-r--r-- | usr.sbin/kbdcontrol/kbdcontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/kbdcontrol/kbdcontrol.c b/usr.sbin/kbdcontrol/kbdcontrol.c index af47958..aed7147 100644 --- a/usr.sbin/kbdcontrol/kbdcontrol.c +++ b/usr.sbin/kbdcontrol/kbdcontrol.c @@ -774,7 +774,7 @@ load_keymap(char *opt, int dumponly) } } if (fd == NULL) { - warn("keymap file not found"); + warn("keymap file \"%s\" not found", opt); return; } memset(&keymap, 0, sizeof(keymap)); |