[svn-commits] rizzo: trunk r47669 - /trunk/channels/chan_oss.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Wed Nov 15 10:40:09 MST 2006


Author: rizzo
Date: Wed Nov 15 11:40:09 2006
New Revision: 47669

URL: http://svn.digium.com/view/asterisk?view=rev&rev=47669
Log:
fix indentation


Modified:
    trunk/channels/chan_oss.c

Modified: trunk/channels/chan_oss.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_oss.c?view=diff&rev=47669&r1=47668&r2=47669
==============================================================================
--- trunk/channels/chan_oss.c (original)
+++ trunk/channels/chan_oss.c Wed Nov 15 11:40:09 2006
@@ -1485,21 +1485,21 @@
 			continue;
 
 		M_BOOL("autoanswer", o->autoanswer)
-			M_BOOL("autohangup", o->autohangup)
-			M_BOOL("overridecontext", o->overridecontext)
-			M_STR("device", o->device)
-			M_UINT("frags", o->frags)
-			M_UINT("debug", oss_debug)
-			M_UINT("queuesize", o->queuesize)
-			M_STR("context", o->ctx)
-			M_STR("language", o->language)
-			M_STR("mohinterpret", o->mohinterpret)
-			M_STR("extension", o->ext)
-			M_F("mixer", store_mixer(o, v->value))
-			M_F("callerid", store_callerid(o, v->value))
-			M_F("boost", store_boost(o, v->value))
-			M_END(;
-			);
+		M_BOOL("autohangup", o->autohangup)
+		M_BOOL("overridecontext", o->overridecontext)
+		M_STR("device", o->device)
+		M_UINT("frags", o->frags)
+		M_UINT("debug", oss_debug)
+		M_UINT("queuesize", o->queuesize)
+		M_STR("context", o->ctx)
+		M_STR("language", o->language)
+		M_STR("mohinterpret", o->mohinterpret)
+		M_STR("extension", o->ext)
+		M_F("mixer", store_mixer(o, v->value))
+		M_F("callerid", store_callerid(o, v->value))
+		M_F("boost", store_boost(o, v->value))
+
+		M_END(/* */);
 	}
 	if (ast_strlen_zero(o->device))
 		ast_copy_string(o->device, DEV_DSP, sizeof(o->device));



More information about the svn-commits mailing list