[Freeswitch-svn] [commit] r9432 - freeswitch/trunk/src/mod/applications/mod_fax

Freeswitch SVN mikej at freeswitch.org
Wed Sep 3 20:45:39 EDT 2008


Author: mikej
Date: Wed Sep  3 20:45:39 2008
New Revision: 9432

Modified:
   freeswitch/trunk/src/mod/applications/mod_fax/mod_fax.c

Log:
fix compiler warnings

Modified: freeswitch/trunk/src/mod/applications/mod_fax/mod_fax.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_fax/mod_fax.c	(original)
+++ freeswitch/trunk/src/mod/applications/mod_fax/mod_fax.c	Wed Sep  3 20:45:39 2008
@@ -74,7 +74,7 @@
     t30_stats_t t;
     const char *local_ident = NULL;
     const char *far_ident = NULL;
-    switch_channel_t *chan = (struct switch_channel_t *) user_data;
+    switch_channel_t *chan = (switch_channel_t *) user_data;
     
     if (result == T30_ERR_OK)
         {
@@ -170,7 +170,6 @@
     const char *fax_local_name = NULL;
     const char *fax_local_subname = NULL;
     const char *fax_local_ecm = NULL;
-    int fax_local_disable_ecm;
     const char *fax_local_v17 = NULL;
 
     // make sure we have a valid channel when starting the FAX application



More information about the Freeswitch-svn mailing list