[asterisk-commits] dlee: branch dlee/stasis-app r384587 - /team/dlee/stasis-app/apps/app_stasis.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Apr 2 13:45:41 CDT 2013


Author: dlee
Date: Tue Apr  2 13:45:38 2013
New Revision: 384587

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=384587
Log:
Addressed review feedback: s/stasis_app/app/

Modified:
    team/dlee/stasis-app/apps/app_stasis.c

Modified: team/dlee/stasis-app/apps/app_stasis.c
URL: http://svnview.digium.com/svn/asterisk/team/dlee/stasis-app/apps/app_stasis.c?view=diff&rev=384587&r1=384586&r2=384587
==============================================================================
--- team/dlee/stasis-app/apps/app_stasis.c (original)
+++ team/dlee/stasis-app/apps/app_stasis.c Tue Apr  2 13:45:38 2013
@@ -129,7 +129,7 @@
 	return app;
 }
 
-/*! AO2 hash function for \ref stasis_app */
+/*! AO2 hash function for \ref app */
 static int app_hash(const void *obj, const int flags)
 {
 	const struct app *app = obj;
@@ -138,7 +138,7 @@
 	return ast_str_hash(name);
 }
 
-/*! AO2 comparison function for \ref stasis_app */
+/*! AO2 comparison function for \ref app */
 static int app_compare(void *lhs, void *rhs, int flags)
 {
 	const struct app *lhs_app = lhs;
@@ -490,7 +490,6 @@
 		if (app) {
 			ao2_link_flags(apps, app, OBJ_NOLOCK);
 		} else {
-			ast_log(LOG_ERROR, "Failed to allocate stasis_app\n");
 			return -1;
 		}
 	}




More information about the asterisk-commits mailing list