A small memory footprint AMQP implimentation

Dependents:   iothub_client_sample_amqp remote_monitoring simplesample_amqp

Revision:
46:01f7ca900e07
Parent:
43:4c1e4e94cdd3
--- a/amqp_management.c	Thu Jul 12 18:09:41 2018 -0700
+++ b/amqp_management.c	Tue Sep 11 11:13:43 2018 -0700
@@ -332,8 +332,10 @@
     return result;
 }
 
-static void on_message_send_complete(void* context, MESSAGE_SEND_RESULT send_result)
+static void on_message_send_complete(void* context, MESSAGE_SEND_RESULT send_result, AMQP_VALUE delivery_state)
 {
+    (void)delivery_state;
+
     if (context == NULL)
     {
         /* Codes_SRS_AMQP_MANAGEMENT_01_167: [ When `on_message_send_complete` is called with a NULL context it shall return. ]*/