cleanup the error message so we dont use glibcism of %m and cast a pointer to an int (bad on 64bit arches)

This commit is contained in:
Mike Frysinger 2005-07-30 09:29:10 +00:00
parent f28c7ec7e5
commit 198ea3c86a

View File

@ -77,10 +77,10 @@ int dumpkmap_main(int argc, char **argv)
ke.kb_index = j;
ke.kb_table = i;
if (ioctl(fd, KDGKBENT, &ke) < 0) {
bb_error_msg("ioctl returned: %m, %s, %s, %xqq",
bb_perror_msg("ioctl failed with %s, %s, %p",
(char *)&ke.kb_index,
(char *)&ke.kb_table,
(int)&ke.kb_value);
&ke.kb_value);
} else {
write(1, (void*)&ke.kb_value, 2);
}