comparison src/libvterm/src/pen.c @ 19091:1c75e1974313 v8.2.0106

patch 8.2.0106: printf formats are not exactly right Commit: https://github.com/vim/vim/commit/b16ad968499aeb29b6ff9be6cc64fb41522a4a5e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 8 22:06:14 2020 +0100 patch 8.2.0106: printf formats are not exactly right Problem: Printf formats are not exactly right. Solution: Adjust signed/unsigned conversions. (Frazer Clews, closes https://github.com/vim/vim/issues/5456)
author Bram Moolenaar <Bram@vim.org>
date Wed, 08 Jan 2020 22:15:03 +0100
parents 811a12a78164
children 9ad473b50471
comparison
equal deleted inserted replaced
19090:df1cb3cd21ab 19091:1c75e1974313
385 break; 385 break;
386 } 386 }
387 387
388 if (!done) 388 if (!done)
389 { 389 {
390 DEBUG_LOG1("libvterm: Unhandled CSI SGR %lu\n", arg); 390 DEBUG_LOG1("libvterm: Unhandled CSI SGR %ld\n", arg);
391 } 391 }
392 392
393 while (CSI_ARG_HAS_MORE(args[argi++])) 393 while (CSI_ARG_HAS_MORE(args[argi++]))
394 ; 394 ;
395 } 395 }