aboutsummaryrefslogtreecommitdiffstats
path: root/src/node.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-06 10:34:55 +0200
committerDavid Robillard <d@drobilla.net>2020-07-06 10:34:55 +0200
commit9f17e7498c9527c85e292914f7e874c045dccc75 (patch)
tree6049662546a912eed501b54642b400fb73ea319d /src/node.c
parented4c28d84c9411e46a0a53efc97c4966ef7ad3d7 (diff)
downloadserd-9f17e7498c9527c85e292914f7e874c045dccc75.tar.gz
serd-9f17e7498c9527c85e292914f7e874c045dccc75.tar.bz2
serd-9f17e7498c9527c85e292914f7e874c045dccc75.zip
Fix spurious semicolon warnings
Diffstat (limited to 'src/node.c')
-rw-r--r--src/node.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/node.c b/src/node.c
index ea9168bd..a66123ef 100644
--- a/src/node.c
+++ b/src/node.c
@@ -99,11 +99,11 @@ serd_uri_string_length(const SerdURI* uri)
#define ADD_LEN(field, n_delims) \
if ((field).len) { len += (field).len + (n_delims); }
- ADD_LEN(uri->path, 1); // + possible leading `/'
- ADD_LEN(uri->scheme, 1); // + trailing `:'
- ADD_LEN(uri->authority, 2); // + leading `//'
- ADD_LEN(uri->query, 1); // + leading `?'
- ADD_LEN(uri->fragment, 1); // + leading `#'
+ ADD_LEN(uri->path, 1) // + possible leading `/'
+ ADD_LEN(uri->scheme, 1) // + trailing `:'
+ ADD_LEN(uri->authority, 2) // + leading `//'
+ ADD_LEN(uri->query, 1) // + leading `?'
+ ADD_LEN(uri->fragment, 1) // + leading `#'
return len + 2; // + 2 for authority `//'
}