Skip to content

Commit

Permalink
res_msp: Minor indentation fixes.
Browse files Browse the repository at this point in the history
PHREAKSCRIPT-40 #close
  • Loading branch information
InterLinked1 committed Sep 12, 2024
1 parent 6c51ec1 commit 36b9170
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions res/res_msp.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ static int msp_send(const struct ast_msg *msg, const char *destination, const ch
* Send via UDP, since there's less overhead, and we don't care about the acknowledgment */
sfd = socket(AF_INET, SOCK_DGRAM, 0);
if (sfd < 0) {
ast_log(LOG_ERROR, "ast_socket failed: %s\n", strerror(errno));
return -1;
}
ast_log(LOG_ERROR, "ast_socket failed: %s\n", strerror(errno));
return -1;
}

res = ast_sendto(sfd, buf, len, 0, &addr);
if (res <= 0) {
Expand Down

0 comments on commit 36b9170

Please sign in to comment.