mirror of
https://github.com/vim/vim.git
synced 2025-10-04 05:25:06 -04:00
updated for version 7.2.333
Problem: Warnings from static code analysis. Solution: Small changes to various lines. (Dominique Pelle)
This commit is contained in:
@@ -2069,7 +2069,7 @@ cs_print_tags_priv(matches, cntxts, num_matches)
|
||||
continue;
|
||||
(void)strcpy(tbuf, matches[idx]);
|
||||
|
||||
if ((fname = strtok(tbuf, (const char *)"\t")) == NULL)
|
||||
if (strtok(tbuf, (const char *)"\t") == NULL)
|
||||
continue;
|
||||
if ((fname = strtok(NULL, (const char *)"\t")) == NULL)
|
||||
continue;
|
||||
|
Reference in New Issue
Block a user