mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 09:02:25 +00:00
Fix uninitialized-global
This commit is contained in:
parent
c0eca32b92
commit
842b0a1271
1 changed files with 1 additions and 0 deletions
1
opts.c
1
opts.c
|
@ -56,6 +56,7 @@ static void opts_setdefault() {
|
|||
opts_set(opts.warn, WARN_UNKNOWN_ATTRIBUTE, true);
|
||||
opts_set(opts.warn, WARN_RESERVED_NAMES, true);
|
||||
opts_set(opts.warn, WARN_UNINITIALIZED_CONSTANT, true);
|
||||
opts_set(opts.warn, WARN_UNINITIALIZED_GLOBAL, false);
|
||||
/* flags */
|
||||
opts_set(opts.flags, ADJUST_VECTOR_FIELDS, true);
|
||||
opts_set(opts.flags, FTEPP, false);
|
||||
|
|
Loading…
Reference in a new issue