1
0
forked from aniani/vim

updated for version 7.0143

This commit is contained in:
Bram Moolenaar
2005-09-07 21:15:32 +00:00
parent d1231f991a
commit ffb8ab0402

View File

@@ -2059,7 +2059,7 @@ mch_get_user_name(s, len)
int len;
{
#ifdef VMS
vim_strncpy((char *)s, cuserid(NULL), len - 1);
vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
return OK;
#else
return mch_get_uname(getuid(), s, len);