Repeat after me: "when reporting `file not found', perform a little bit of

useful HCI consideration and tell which file was being looked for".
This commit is contained in:
David E. O'Brien 2001-07-13 16:30:11 +00:00
parent 4dad593a95
commit bdcfaae4cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79677

View File

@ -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));