updated for version 7.2.333
Problem: Warnings from static code analysis.
Solution: Small changes to various lines. (Dominique Pelle)
diff --git a/src/if_cscope.c b/src/if_cscope.c
index bd90eca..b2a4ce1 100644
--- a/src/if_cscope.c
+++ b/src/if_cscope.c
@@ -2069,7 +2069,7 @@
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;