comparison src/gui_w48.c @ 3279:1fec3c62f6e8 v7.3.408

updated for version 7.3.408 Problem: Missing declaration. Solution: Add the declaration. (John Marriott)
author Bram Moolenaar <bram@vim.org>
date Fri, 20 Jan 2012 20:54:19 +0100
parents fbb23bd517f8
children e6d8b44065bc
comparison
equal deleted inserted replaced
3278:6d1e3108a03f 3279:1fec3c62f6e8
3284 static WCHAR * 3284 static WCHAR *
3285 convert_filterW(char_u *s) 3285 convert_filterW(char_u *s)
3286 { 3286 {
3287 char_u *tmp; 3287 char_u *tmp;
3288 int len; 3288 int len;
3289 WCHAR *res;
3289 3290
3290 tmp = convert_filter(s); 3291 tmp = convert_filter(s);
3291 if (tmp == NULL) 3292 if (tmp == NULL)
3292 return NULL; 3293 return NULL;
3293 len = (int)STRLEN(s) + 3; 3294 len = (int)STRLEN(s) + 3;