From b81d7389a96617d19bf4d58e707aab88bcf11098 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sun, 29 May 2005 15:08:23 +0000 Subject: [PATCH] add missing argument (bug #4405) git-svn-id: https://origsvn.digium.com/svn/libpri/trunk@223 2fbb986a-6c06-0410-b554-c9c1f0a7f128 --- q931.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/q931.c b/q931.c index 91149c0..3c27190 100755 --- a/q931.c +++ b/q931.c @@ -3074,7 +3074,7 @@ int q931_hangup(struct pri *pri, q931_call *c, int cause) case Q931_CALL_STATE_RESTART: case Q931_CALL_STATE_RESTART_REQUEST: /* sent RESTART */ - pri_error(pri, "q931_hangup shouldn't be called in this state, ourstate %s, peerstate %s\n",callstate2str(c->ourcallstate),callstate2str(c->peercallstate)); + pri_error(pri, "q931_hangup shouldn't be called in this state, ourstate %s, peerstate %s\n",c->ourcallstate,callstate2str(c->ourcallstate),callstate2str(c->peercallstate)); break; default: pri_error(pri, "We're not yet handling hanging up when our state is %d, contact support@digium.com, ourstate %s, peerstate %s\n",callstate2str(c->ourcallstate),callstate2str(c->peercallstate));