Skip to content

Commit

Permalink
patch 8.0.0915: wrong initialisation of global
Browse files Browse the repository at this point in the history
Problem:    Wrong initialisation of global.
Solution:   Use INIT().
  • Loading branch information
brammool committed Aug 12, 2017
1 parent 0cd2a94 commit 7eedd43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/globals.h
Expand Up @@ -1672,7 +1672,7 @@ EXTERN int *eval_lavars_used INIT(= NULL);
#endif

#ifdef WIN3264
EXTERN int ctrl_break_was_pressed = FALSE;
EXTERN int ctrl_break_was_pressed INIT(= FALSE);
#endif

/*
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -769,6 +769,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
915,
/**/
914,
/**/
Expand Down

0 comments on commit 7eedd43

Please sign in to comment.