diff options
Diffstat (limited to 'console-tools')
-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 | } |