Skip to content

Commit 36b9170

Browse files
committed
res_msp: Minor indentation fixes.
PHREAKSCRIPT-40 #close
1 parent 6c51ec1 commit 36b9170

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

res/res_msp.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ static int msp_send(const struct ast_msg *msg, const char *destination, const ch
120120
* Send via UDP, since there's less overhead, and we don't care about the acknowledgment */
121121
sfd = socket(AF_INET, SOCK_DGRAM, 0);
122122
if (sfd < 0) {
123-
ast_log(LOG_ERROR, "ast_socket failed: %s\n", strerror(errno));
124-
return -1;
125-
}
123+
ast_log(LOG_ERROR, "ast_socket failed: %s\n", strerror(errno));
124+
return -1;
125+
}
126126

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

0 commit comments

Comments
 (0)