summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-08 11:15:46 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-08 11:15:46 -0400
commit50eef054408eb298c09d382e5ec12ba4fc7bd5f4 (patch)
treed8d98a9963f703b159c8e30d32f095fd109308e3 /config.h
parent31605a0a6b603213a5e6b78271052266814269a6 (diff)
Remove the `b` member from the `config_val` union.
We can use the `i` member instead.
Diffstat (limited to 'config.h')
-rw-r--r--config.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/config.h b/config.h
index 999294b..42b8929 100644
--- a/config.h
+++ b/config.h
@@ -38,7 +38,6 @@ union config_val {
int i; /* Integer. */
char *str; /* String. */
float f; /* Float. */
- int b : 1; /* Bool. */
};
static const config_opt config_opts[] = {