From 50eef054408eb298c09d382e5ec12ba4fc7bd5f4 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Tue, 8 Jun 2021 11:15:46 -0400 Subject: Remove the `b` member from the `config_val` union. We can use the `i` member instead. --- config.h | 1 - 1 file changed, 1 deletion(-) 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[] = { -- cgit v1.2.3-13-gbd6f