Skip to content

Commit

Permalink
Add missing semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Sep 1, 2024
1 parent 99f40e0 commit 78550fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/dtls_gw/rtpp_dtls_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,10 @@ bio_write(BIO *b, const char *buf, int len)
memcpy(packet->data.buf, buf, len);
packet->size = len;
CALL_SMETHOD(dtls_strmp, send_pkt, NULL, packet);
RTPP_OBJ_DECREF(dtls_strmp)
RTPP_OBJ_DECREF(dtls_strmp);
return (len);
e1:
RTPP_OBJ_DECREF(dtls_strmp)
RTPP_OBJ_DECREF(dtls_strmp);
e0:
return (-1);
}
Expand Down

0 comments on commit 78550fd

Please sign in to comment.