Skip to content
Snippets Groups Projects
Commit 5643fef3 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Use 0 for return, not false.

parent a9adfa82
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -79,7 +79,7 @@ uint32_t
sftp_pkt_sz(sftp_rx_pkt_t pkt)
{
if (!pkt)
return false;
return 0;
assert(sftp_have_pkt_sz(pkt));
return BE_INT32(pkt->len);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment