summaryrefslogtreecommitdiff
path: root/console-client/pc-kbd.c
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2015-12-29 21:17:25 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2015-12-29 21:57:04 +0100
commit2280227bedf69b733a589f12ac6b6d5a4fc36af4 (patch)
tree69949b8fbf88cf97ac6307a3161a229a59be4b71 /console-client/pc-kbd.c
parent6ca2aa1284a5e82df0193d2727941420361bc50f (diff)
fix compiler warnings in hurd/console-client
On Tue, Dec 29, 2015 at 08:43:24PM +0100, Samuel Thibault wrote: > Flavio Cruz, on Tue 29 Dec 2015 17:35:00 +0100, wrote: > > @@ -663,10 +663,11 @@ update_leds (void) > > | (led_state.num_lock ? 2 : 0) > > | (led_state.caps_lock ? 4 : 0); > > > > - err = device_write_inband (kbd_dev, 0, -1, (void *) leds, 2, &data_cnt); > > + err = device_write_inband (kbd_dev, 0, -1, (void *) leds, 2, > > + (int *) &data_cnt); > > if (!err && data_cnt == 1) > > err = device_write_inband (kbd_dev, 0, -1, (void *) &leds[1], 1, > > - &data_cnt); > > + (int *) &data_cnt); > > } > > } > > > > I'm surprised: if the device_write_inband RPC really wants an int*, why > not making data_cnt an int? That works better. Thanks. console-client: Fix compiler warning. * console-client/pc-kbd.c (update_leds): Replace mach_msg_type_number_t with int.
Diffstat (limited to 'console-client/pc-kbd.c')
-rw-r--r--console-client/pc-kbd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console-client/pc-kbd.c b/console-client/pc-kbd.c
index 6f2d827a..2fc7608f 100644
--- a/console-client/pc-kbd.c
+++ b/console-client/pc-kbd.c
@@ -656,7 +656,7 @@ update_leds (void)
else
{
char leds[2];
- mach_msg_type_number_t data_cnt = 2;
+ int data_cnt = 2;
leds[0] = '\xed';
leds[1] = (led_state.scroll_lock ? 1 : 0)