]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
change prototype
authorMichael Jerris <mike@jerris.com>
Tue, 22 May 2007 19:22:09 +0000 (19:22 +0000)
committerMichael Jerris <mike@jerris.com>
Tue, 22 May 2007 19:22:09 +0000 (19:22 +0000)
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@101 a93c3328-9c30-0410-af19-c9cd2b2d52af

libs/freetdm/src/isdn/Q931.c
libs/freetdm/src/isdn/include/Q931.h

index ab8fb9a841ccaa105f8b6ad43a23a0904965a79c..1b0650f8e2ec99fdaec01e64688a55d2e20a8567 100644 (file)
@@ -275,8 +275,9 @@ void Q931Initialize()
   Return Value: none
 
 *****************************************************************************/
-void Q931TimeTick(L3ULONG ms)
+void Q931TimeTick(Q931_TrunkInfo *pTrunk, L3ULONG ms)
 {
+       (void)pTrunk;
     ms=ms; /* avoid warning for now. */
 
        /*  TODO: Loop through all active calls, check timers and call timour procs
index 00c54a4ad575f261796baaf9324cc83c919d4883..3d9eee03385988320d8dfe732d7cf4cfc9dc262a 100644 (file)
@@ -2369,7 +2369,7 @@ L3INT Q931ProcUnexpectedMessage(Q931_TrunkInfo *pTrunk,L3UCHAR * b, L3INT iFrom)
   Interface Function Prototypes. Implemented in Q931.c
 
 *****************************************************************************/
-void    Q931TimeTick(L3ULONG ms);
+void    Q931TimeTick(Q931_TrunkInfo *pTrunk, L3ULONG ms);
 L3INT   Q931Rx23(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size);
 L3INT   Q931Tx32(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size);
 L3INT   Q931Rx43(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size);