Skip to content

Commit

Permalink
Fix some module-specific globals not declared static
Browse files Browse the repository at this point in the history
This prevents the symbol to be exported and possibly conflict with
another one.
  • Loading branch information
b4n committed Sep 24, 2013
1 parent e4eacef commit 8f11c62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tagmanager/ctags/php.c
Expand Up @@ -231,13 +231,13 @@ static langType Lang_php;
static boolean InPhp = FALSE; /* whether we are between <? ?> */

/* current statement details */
struct {
static struct {
accessType access;
implType impl;
} CurrentStatement;

/* Current namespace */
vString *CurrentNamesapce;
static vString *CurrentNamesapce;


static void buildPhpKeywordHash (void)
Expand Down

0 comments on commit 8f11c62

Please sign in to comment.