Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoby committed Oct 1, 2024
1 parent 2b9db62 commit b12f675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/oidc.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ static void ext_accept(uv_work_t *wr) {
"<body>Unexpected auth request:<pre>";
#if _WIN32
send(clt, resp, sizeof(resp), 0);
sebd(clt, buf, c, 0);
send(clt, buf, c, 0);
#else
write(clt, resp, sizeof(resp));

Check warning on line 440 in library/oidc.c

View workflow job for this annotation

GitHub Actions / Linux ARM64

ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]

Check warning on line 440 in library/oidc.c

View workflow job for this annotation

GitHub Actions / Linux x86_64

ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
write(clt, buf, c);
Expand Down

0 comments on commit b12f675

Please sign in to comment.