diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-03-23 21:01:40 +0000 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-04-24 19:40:16 +0100 |
commit | dcdc8e7466dcae2444166134114881a30c124bf2 (patch) | |
tree | 0968f36d3f1956914247f726f955429711a92881 /src | |
parent | 375556f9aa76c1b9ff77d08f75451dfffb1e082a (diff) | |
download | unit-dcdc8e7466dcae2444166134114881a30c124bf2.tar.gz unit-dcdc8e7466dcae2444166134114881a30c124bf2.tar.bz2 |
Remove an erroneous semi-colon.
Reviewed-by: Alejandro Colomar <alx@nginx.com>
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/nxt_conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_conf.c b/src/nxt_conf.c index d04aa45c..664b5468 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]; |