comment out debug output (Thanks Ciprian)

pull/1/head
Michael Stapelberg 2010-09-09 15:39:27 +02:00
parent bf31c90a5f
commit bdf6c6b45d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}