]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
warning levels on nix build prohibits // comments
authorMichael Jerris <mike@jerris.com>
Mon, 21 May 2007 19:37:52 +0000 (19:37 +0000)
committerMichael Jerris <mike@jerris.com>
Mon, 21 May 2007 19:37:52 +0000 (19:37 +0000)
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@74 a93c3328-9c30-0410-af19-c9cd2b2d52af

libs/freetdm/src/isdn/Q931.c

index ed736284d036e06c7499fdad1fed32dbb2ae2549..01966b389eed65e9a9d1f5fe901a4e4ba298bea3 100644 (file)
@@ -286,12 +286,13 @@ void Q931Initialize()
 *****************************************************************************/\r
 void Q931TimeTick(L3ULONG ms)\r
 {\r
-    ms=ms; // avoid warning for now.\r
+    ms=ms; /* avoid warning for now. */\r
 \r
-       // TODO: Loop through all active calls, check timers and call timour procs\r
-       // if timers are expired.\r
-       // Implement an function array so each dialect can deal with their own\r
-       // timeouts.\r
+       /*  TODO: Loop through all active calls, check timers and call timour procs\r
+        *  if timers are expired.\r
+        *  Implement an function array so each dialect can deal with their own\r
+        *  timeouts.\r
+        */\r
 }\r
 \r
 /*****************************************************************************\r
@@ -578,7 +579,7 @@ L3ULONG Q931GetTime()
         tNow = Q931GetTimeProc();\r
         if(tNow < tLast)    /* wrapped */\r
         {\r
-                       // todo\r
+                       /* TODO */\r
         }\r
                tLast = tNow;\r
     }\r
@@ -632,7 +633,7 @@ void Q931AddStateEntry(L3UCHAR iD, L3INT iState,    L3INT iMes,     L3UCHAR cDir)
                        Q931st[x].State = iState;\r
                        Q931st[x].Message = iMes;\r
                        Q931st[x].Direction = cDir;\r
-                       // TODO Sort table and use bsearch\r
+                       /* TODO Sort table and use bsearch */\r
                        return;\r
                }\r
        }\r
@@ -650,7 +651,7 @@ void Q931AddStateEntry(L3UCHAR iD, L3INT iState,    L3INT iMes,     L3UCHAR cDir)
 L3BOOL Q931IsEventLegal(L3UCHAR iD, L3INT iState, L3INT iMes, L3UCHAR cDir)\r
 {\r
        int x;\r
-       // TODO Sort table and use bsearch\r
+       /* TODO Sort table and use bsearch */\r
        for(x=0; x < Q931MAXSTATE; x++)\r
        {\r
                if(             Q931st[x].State == iState\r