Skip to content

Commit

Permalink
Removed & operator
Browse files Browse the repository at this point in the history
  • Loading branch information
stescobedo92 committed Feb 22, 2024
1 parent 797650b commit bbe982c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/porkbun.c
Expand Up @@ -166,7 +166,7 @@ static int get_result_value(const char *json, const char *key, jsmntok_t *out_re
goto cleanup;
}

if (check_success(json, tokens + i + 1, &num_tokens) == -1) {
if (check_success(json, tokens + i + 1, num_tokens) == -1) {
logit(LOG_ERR, "Request was unsuccessful.");
goto cleanup;
}
Expand Down

0 comments on commit bbe982c

Please sign in to comment.