Fix inverted LEDs

Turns out it's probably better to post the new state rather than the
old.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
diff --git a/src/compositor.c b/src/compositor.c
index 1383966..b904861 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1793,7 +1793,7 @@
 					  seat->xkb_info.scroll_led))
 		leds |= LED_SCROLL_LOCK;
 	if (leds != seat->xkb_state.leds && seat->led_update)
-		seat->led_update(seat, seat->xkb_state.leds);
+		seat->led_update(seat, leds);
 	seat->xkb_state.leds = leds;
 
 	return ret;