dnsmasq: fix typo

This commit is contained in:
CN_SZTL 2020-03-08 20:33:27 +08:00
parent ee47429fbb
commit a1b1496fed
No known key found for this signature in database
GPG Key ID: 6850B6345C862176

View File

@ -22,8 +22,7 @@ index 1896a64..e10d6c4 100644
+#define OPT_LAST 63
#define OPTION_BITS (sizeof(unsigned int)*8)
#define OPTION_SIZE (
(OPT_LAST/OPTION_BITS)+((OPT_LAST%OPTION_BITS)!=0) )
#define OPTION_SIZE ( (OPT_LAST/OPTION_BITS)+((OPT_LAST%OPTION_BITS)!=0) )
diff --git a/src/option.c b/src/option.c
index d8c57d6..1cc65bf 100644
--- a/src/option.c