Skip to content

Commit

Permalink
Fix another gcc warning for DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
newsch committed Feb 29, 2020
1 parent 22493cc commit 061551c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ int main(int argc, char *argv[]) {
mmask |= REPORT_MOUSE_POSITION;
#endif
mmask_t return_mask = mousemask(mmask, NULL);
logd("Returned mouse mask: %li\n", return_mask);
logd("Returned mouse mask: %i\n", return_mask);
// get mouse updates faster at the expense of not registering "clicks"
mouseinterval(0);
#ifdef ENABLE_MOUSE_MOVEMENT
Expand Down

0 comments on commit 061551c

Please sign in to comment.