C1071: Redefined extern to static

[ERROR]

Description

An extern identifier was redefined as static.

Example
  extern int i;

  
  static int i;  // error

  
Tips

Remove either the extern specifier of the first declaration, or the static specifier of the second occurrence of the identifier.