[asterisk-commits] qwell: branch qwell/queue_events r390286 - /team/qwell/queue_events/apps/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri May 31 10:24:46 CDT 2013


Author: qwell
Date: Fri May 31 10:24:45 2013
New Revision: 390286

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=390286
Log:
This function now returns void.  Fix it.

Modified:
    team/qwell/queue_events/apps/app_queue.c

Modified: team/qwell/queue_events/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/team/qwell/queue_events/apps/app_queue.c?view=diff&rev=390286&r1=390285&r2=390286
==============================================================================
--- team/qwell/queue_events/apps/app_queue.c (original)
+++ team/qwell/queue_events/apps/app_queue.c Fri May 31 10:24:45 2013
@@ -6301,7 +6301,9 @@
 		ast_json_object_set(json_blob, "Reason", ast_json_string_create(reason));
 	}
 
-	return ast_manager_publish_event("QueueMemberPause", EVENT_FLAG_AGENT, json_blob);
+	ast_manager_publish_event("QueueMemberPause", EVENT_FLAG_AGENT, json_blob);
+
+	return 0;
 }
 
 static int set_member_paused(const char *queuename, const char *interface, const char *reason, int paused)




More information about the asterisk-commits mailing list