[asterisk-commits] channels/chan skinny: Fix compilation error introduced in f8... (asterisk[master])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Apr 26 18:32:00 CDT 2015
Matt Jordan has submitted this change and it was merged.
Change subject: channels/chan_skinny: Fix compilation error introduced in f8e21a1adf
......................................................................
channels/chan_skinny: Fix compilation error introduced in f8e21a1adf
A typo in commit f8e21a1adf resulted in a compilation error in
chan_skinny. This patch fixes the typo.
ASTERISK-24917
Change-Id: Id7f4ad1fe948eb2408622e80c27936ce4516c33c
---
M channels/chan_skinny.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Matt Jordan: Looks good to me, approved; Verified
Joshua Colp: Looks good to me, but someone else must approve
diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c
index 8f6f2eb..5f30a13 100644
--- a/channels/chan_skinny.c
+++ b/channels/chan_skinny.c
@@ -7545,7 +7545,7 @@
break;
}
- eventmessage = letohl(req-e);
+ eventmessage = letohl(req->e);
if (eventmessage < 0) {
ast_log(LOG_ERROR, "Event Message is NULL from socket %d, This is bad\n", s->fd);
break;
--
To view, visit https://gerrit.asterisk.org/259
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Id7f4ad1fe948eb2408622e80c27936ce4516c33c
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Matt Jordan <mjordan at digium.com>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Matt Jordan <mjordan at digium.com>
More information about the asterisk-commits
mailing list