diff options
| author | Phil Sutter <phil@nwl.cc> | 2021-03-09 11:26:47 +0100 |
|---|---|---|
| committer | Phil Sutter <phil@nwl.cc> | 2021-03-15 12:23:20 +0100 |
| commit | 960c8e6174374ee113b290c304365bf02ed346d6 (patch) | |
| tree | 3c5b27821e29409822920e6113e1c3364ac5b4e9 /src/expr/ct.c | |
| parent | 4f6e671b462180ba9af12bd30211811b5fca8cb1 (diff) | |
Drop pointless local variable in snprintf callbacks
A common idiom among snprintf callbacks was to copy the unsigned
parameter 'size' (or 'len') into a signed variable for further use.
Though since snprintf() itself casts it to unsigned and
SNPRINTF_BUFFER_SIZE() does not allow it to become negative, this is not
needed. Drop the local variable and rename the parameter accordingly.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'src/expr/ct.c')
| -rw-r--r-- | src/expr/ct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/ct.c b/src/expr/ct.c index f4a7dc6..d5dfc81 100644 --- a/src/expr/ct.c +++ b/src/expr/ct.c @@ -223,11 +223,11 @@ static inline int str2ctdir(const char *str, uint8_t *ctdir) } static int -nftnl_expr_ct_snprintf(char *buf, size_t size, +nftnl_expr_ct_snprintf(char *buf, size_t remain, uint32_t flags, const struct nftnl_expr *e) { - int ret, remain = size, offset = 0; struct nftnl_expr_ct *ct = nftnl_expr_data(e); + int ret, offset = 0; if (e->flags & (1 << NFTNL_EXPR_CT_SREG)) { ret = snprintf(buf, remain, "set %s with reg %u ", |
