From 94f015115cc721d9b4352cd96338ea17b1f9fe92 Mon Sep 17 00:00:00 2001 From: vapier 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) git-svn-id: svn://busybox.net/trunk/busybox@10982 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- console-tools/dumpkmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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-55-g6feb