diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-30 09:29:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-30 09:29:10 +0000 |
commit | 198ea3c86a40fc6608eedf29b018421337163bff (patch) | |
tree | 17320a77e8176fe7bfb13a42129029621f13b7f4 /console-tools/dumpkmap.c | |
parent | f28c7ec7e5c776b2370315ffcd19cbf9f67adab0 (diff) | |
download | busybox-w32-198ea3c86a40fc6608eedf29b018421337163bff.tar.gz busybox-w32-198ea3c86a40fc6608eedf29b018421337163bff.tar.bz2 busybox-w32-198ea3c86a40fc6608eedf29b018421337163bff.zip |
cleanup the error message so we dont use glibcism of %m and cast a pointer to an int (bad on 64bit arches)
Diffstat (limited to 'console-tools/dumpkmap.c')
-rw-r--r-- | console-tools/dumpkmap.c | 4 |
1 files 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) | |||
77 | ke.kb_index = j; | 77 | ke.kb_index = j; |
78 | ke.kb_table = i; | 78 | ke.kb_table = i; |
79 | if (ioctl(fd, KDGKBENT, &ke) < 0) { | 79 | if (ioctl(fd, KDGKBENT, &ke) < 0) { |
80 | bb_error_msg("ioctl returned: %m, %s, %s, %xqq", | 80 | bb_perror_msg("ioctl failed with %s, %s, %p", |
81 | (char *)&ke.kb_index, | 81 | (char *)&ke.kb_index, |
82 | (char *)&ke.kb_table, | 82 | (char *)&ke.kb_table, |
83 | (int)&ke.kb_value); | 83 | &ke.kb_value); |
84 | } else { | 84 | } else { |
85 | write(1, (void*)&ke.kb_value, 2); | 85 | write(1, (void*)&ke.kb_value, 2); |
86 | } | 86 | } |