commit bdf6c6b45d3622c9cd6456fb3a8da4752d7d836f
parent bf31c90a5f675f83912d042603e9d1baefaf4176
Author: Michael Stapelberg <michael@stapelberg.de>
Date: Thu, 9 Sep 2010 15:39:27 +0200
comment out debug output (Thanks Ciprian)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/i3lock.c b/i3lock.c
@@ -146,7 +146,7 @@ static void handle_key_press(xcb_key_press_event_t *event) {
/* decrement input_position to point to the previous glyph */
u8_dec(password, &input_position);
password[input_position] = '\0';
- printf("new input position = %d, new password = %s\n", input_position, password);
+ //printf("new input position = %d, new password = %s\n", input_position, password);
return;
}