Skip to content

Commit bc883bc

Browse files
committed
Fix appsec lint
1 parent 906cbc5 commit bc883bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appsec/src/extension/network.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ dd_result dd_conn_sendv(dd_conn *nonnull conn, zend_llist *nonnull iovecs)
218218
mlog_err(dd_log_info, "Error writing %zu bytes to helper", total);
219219
efree(iovs);
220220
return dd_network;
221-
} else if (written == 0) {
221+
} else if (written == 0) { // NOLINT
222222
mlog(dd_log_info, "writev() call returned zero");
223223
efree(iovs);
224224
return dd_network;

0 commit comments

Comments
 (0)