]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - opts.c
process_condition function used by parse_if - need to still add it to loops
[xonotic/gmqcc.git] / opts.c
diff --git a/opts.c b/opts.c
index b8abedd7188e9f3661aa60938b4ee7159f6080b1..a8e3e6c2e9d3cbf8ed93195804ce6d9995f5b5ee 100644 (file)
--- a/opts.c
+++ b/opts.c
@@ -88,16 +88,16 @@ static bool opts_setflag_all(const char *name, bool on, uint32_t *flags, const o
     }
     return false;
 }
-bool opts_setflag (const char *name, bool on) {
+bool opts_setflag  (const char *name, bool on) {
     return opts_setflag_all(name, on, opts.flags,        opts_flag_list, COUNT_FLAGS);
 }
-bool opts_setwarn (const char *name, bool on) {
+bool opts_setwarn  (const char *name, bool on) {
     return opts_setflag_all(name, on, opts.warn,         opts_warn_list, COUNT_WARNINGS);
 }
 bool opts_setwerror(const char *name, bool on) {
     return opts_setflag_all(name, on, opts.werror,       opts_warn_list, COUNT_WARNINGS);
 }
-bool opts_setoptim(const char *name, bool on) {
+bool opts_setoptim (const char *name, bool on) {
     return opts_setflag_all(name, on, opts.optimization, opts_opt_list,  COUNT_OPTIMIZATIONS);
 }