Skip to content
Snippets Groups Projects
Commit 4e2ef295 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

warning: pointer targets in passing argument 1 of ‘strcmp’ differ in signedness

parent e4aa3254
No related branches found
No related tags found
No related merge requests found
......@@ -3583,7 +3583,7 @@ do_paste(void)
else if (*p2 == '\x1b') {
// If we're using bracked paste, strip paste end sequence
// TODO: Do we generally want to disable all ESC chars?
if (strcmp(p2, "\x1b[201~") == 0)
if (strcmp((char*)p2, "\x1b[201~") == 0)
p2 += 5;
else
conn_send(p2, 1, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment