summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shopify.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shopify.c b/shopify.c
index ce6d331..f8f8ae2 100644
--- a/shopify.c
+++ b/shopify.c
@@ -124,13 +124,13 @@ bool shopify_valid(struct MHD_Connection *conn, const char *url,
const char *val = (*params)[i].val;
if (strcmp(key, "hmac")) {
size_t query_len = query ? strlen(query) : 0;
- bool ampersand = i != nparams - 1;
+ bool ampersand_len = i != nparams - 1;
query = realloc(query, query_len + strlen(key)
- + strlen("=") + strlen(val) + ampersand
- + 1);
+ + strlen("=") + strlen(val)
+ + ampersand_len + 1);
query[query_len] = '\0';
sprintf(query, "%s%s=%s%s", query, key, val,
- ampersand ? "&" : "");
+ ampersand_len ? "&" : "");
}
}
char *hmac = NULL;