tidy-up: move literals to right-side of if expressions (where missing)

Closes #20535
This commit is contained in:
Viktor Szakats 2026-02-07 15:59:59 +01:00
parent c6ac2de5b3
commit 85de995208
No known key found for this signature in database
57 changed files with 115 additions and 115 deletions

View file

@ -90,7 +90,7 @@ int main(void)
/* always cleanup */
curl_easy_cleanup(curl);
if(CURLE_OK != result) {
if(result != CURLE_OK) {
/* we failed */
fprintf(stderr, "curl told us %d\n", result);
}