To: vim_dev@googlegroups.com Subject: Patch 7.4.2156 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.4.2156 Problem: Compiler warning. Solution: Add type cast. (Ken Takata, Mike Williams) Files: src/os_win32.c *** ../vim-7.4.2155/src/os_win32.c 2016-08-03 22:08:41.743652143 +0200 --- src/os_win32.c 2016-08-04 21:58:26.129284425 +0200 *************** *** 577,583 **** const char *msgid_plural, unsigned long n) { ! return n == 1 ? msgid : msgid_plural; } /*ARGSUSED*/ --- 577,583 ---- const char *msgid_plural, unsigned long n) { ! return (char *)(n == 1 ? msgid : msgid_plural); } /*ARGSUSED*/ *** ../vim-7.4.2155/src/version.c 2016-08-04 21:21:09.405835089 +0200 --- src/version.c 2016-08-04 21:57:43.901674030 +0200 *************** *** 765,766 **** --- 765,768 ---- { /* Add new patch number below this line */ + /**/ + 2156, /**/ -- "Lisp has all the visual appeal of oatmeal with nail clippings thrown in." -- Larry Wall /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///