Skip to content

Commit

Permalink
Fix printf argument types (vim/vim#5456)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Jan 13, 2020
1 parent 700d95f commit de5a2cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pen.c
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ INTERNAL void vterm_state_setpen(VTermState *state, const long args[], int argco
}

if(!done)
DEBUG_LOG("libvterm: Unhandled CSI SGR %lu\n", arg);
DEBUG_LOG("libvterm: Unhandled CSI SGR %ld\n", arg);

while(CSI_ARG_HAS_MORE(args[argi++]));
}
Expand Down

0 comments on commit de5a2cb

Please sign in to comment.