From 198ea3c86a40fc6608eedf29b018421337163bff Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 30 Jul 2005 09:29:10 +0000 Subject: cleanup the error message so we dont use glibcism of %m and cast a pointer to an int (bad on 64bit arches) --- console-tools/dumpkmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'console-tools/dumpkmap.c') diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c index 0897b3294..61768fe16 100644 --- a/console-tools/dumpkmap.c +++ b/console-tools/dumpkmap.c @@ -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); } -- cgit v1.2.3