mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.3.1165
Problem: HP-UX compiler can't handle zero size array. (Charles Cooper) Solution: Make the array one item big.
This commit is contained in:
@@ -101,7 +101,7 @@ typedef struct
|
||||
#endif
|
||||
int nsubexp; /* number of () */
|
||||
int nstate;
|
||||
nfa_state_T state[0]; /* actually longer.. */
|
||||
nfa_state_T state[1]; /* actually longer.. */
|
||||
} nfa_regprog_T;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user