summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2023-03-23 21:01:40 +0000
committerAndrew Clayton <a.clayton@nginx.com>2023-03-28 23:15:28 +0100
commitf6da981b218e9e817121a9087fb2e0cccae4e549 (patch)
treeb7aa7db9447594f10102e19e02896661cb3cd967
parentcb99f1e11ffd20f71291903cf30f1a121801cd4e (diff)
downloadunit-f6da981b218e9e817121a9087fb2e0cccae4e549.tar.gz
unit-f6da981b218e9e817121a9087fb2e0cccae4e549.tar.bz2
Remove an erroneous semi-colon.
Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
-rw-r--r--src/nxt_conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_conf.c b/src/nxt_conf.c
index a27eb9d6..97764d42 100644
--- a/src/nxt_conf.c
+++ b/src/nxt_conf.c
@@ -46,7 +46,7 @@ typedef struct nxt_conf_object_s nxt_conf_object_t;
struct nxt_conf_value_s {
union {
uint8_t boolean; /* 1 bit. */
- u_char number[NXT_CONF_MAX_NUMBER_LEN + 1];;
+ u_char number[NXT_CONF_MAX_NUMBER_LEN + 1];
struct {
u_char start[NXT_CONF_MAX_SHORT_STRING];