comparison src/ex_docmd.c @ 11428:346168f2a6cb v8.0.0598

patch 8.0.0598: building with gcc 7.1 yields new warnings commit https://github.com/vim/vim/commit/9e0f6ec0762575d229b86798b284ca4876bc3d73 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 16 09:36:54 2017 +0200 patch 8.0.0598: building with gcc 7.1 yields new warnings Problem: Building with gcc 7.1 yields new warnings. Solution: Initialize result. (John Marriott)
author Christian Brabandt <cb@256bit.org>
date Tue, 16 May 2017 09:45:03 +0200
parents 889da8649221
children 561b76ed9d12
comparison
equal deleted inserted replaced
11427:30e43349a78a 11428:346168f2a6cb
10888 sprintf((char *)strbuf, PRINTF_HEX_LONG_U, 10888 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
10889 (long_u)clientWindow); 10889 (long_u)clientWindow);
10890 result = strbuf; 10890 result = strbuf;
10891 break; 10891 break;
10892 #endif 10892 #endif
10893 default:
10894 result = (char_u *)""; /* avoid gcc warning */
10895 break;
10893 } 10896 }
10894 10897
10895 resultlen = (int)STRLEN(result); /* length of new string */ 10898 resultlen = (int)STRLEN(result); /* length of new string */
10896 if (src[*usedlen] == '<') /* remove the file name extension */ 10899 if (src[*usedlen] == '<') /* remove the file name extension */
10897 { 10900 {