From: Michael Jerris Date: Thu, 26 Sep 2013 17:31:35 +0000 (-0400) Subject: FS-5819: add missing status values that we check from apr to the enum so the compiler... X-Git-Tag: v1.5.8~75^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6078451baeccfad2a44046ee6bb6386175d2ba01;p=thirdparty%2Ffreeswitch.git FS-5819: add missing status values that we check from apr to the enum so the compiler knows the right type to use for the enum --- diff --git a/src/include/switch_types.h b/src/include/switch_types.h index fd5208eea6..27a88dcc73 100644 --- a/src/include/switch_types.h +++ b/src/include/switch_types.h @@ -1041,7 +1041,9 @@ typedef enum { SWITCH_STATUS_FOUND, SWITCH_STATUS_CONTINUE, SWITCH_STATUS_TERM, - SWITCH_STATUS_NOT_INITALIZED + SWITCH_STATUS_NOT_INITALIZED, + SWITCH_STATUS_XBREAK = 35, + SWITCH_STATUS_WINBREAK = 730035 } switch_status_t;