Skip to content

Commit

Permalink
cleanup indention left-overs
Browse files Browse the repository at this point in the history
  • Loading branch information
stapelberg committed Mar 13, 2011
1 parent 7128f80 commit 6b0ce0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions i3lock.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,15 +182,15 @@ static void handle_key_press(xcb_key_press_event_t *event) {
#endif

if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
return;
return;

//printf("sym = %c (%d)\n", sym, sym);

/* convert the keysym to UCS */
uint16_t ucs = keysym2ucs(sym);
if ((int16_t)ucs == -1) {
fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
return;
fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
return;
}

/* store the UCS in a string to convert it */
Expand Down

0 comments on commit 6b0ce0d

Please sign in to comment.