[asterisk-commits] kmoore: branch kmoore/stasis-http_sounds r387798 - in /team/kmoore/stasis-htt...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue May 7 09:08:48 CDT 2013


Author: kmoore
Date: Tue May  7 09:08:45 2013
New Revision: 387798

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=387798
Log:
Fix red blobs

Modified:
    team/kmoore/stasis-http_sounds/main/sounds.c
    team/kmoore/stasis-http_sounds/res/res_sounds.c

Modified: team/kmoore/stasis-http_sounds/main/sounds.c
URL: http://svnview.digium.com/svn/asterisk/team/kmoore/stasis-http_sounds/main/sounds.c?view=diff&rev=387798&r1=387797&r2=387798
==============================================================================
--- team/kmoore/stasis-http_sounds/main/sounds.c (original)
+++ team/kmoore/stasis-http_sounds/main/sounds.c Tue May  7 09:08:45 2013
@@ -24,7 +24,7 @@
 #include "asterisk/sounds.h"
 
 /*! \brief Holder for the registered indexer interface */
-static struct ast_sounds_indexer *sounds_indexer = NULL; 
+static struct ast_sounds_indexer *sounds_indexer = NULL;
 
 void ast_sounds_indexer_register(struct ast_sounds_indexer *indexer)
 {

Modified: team/kmoore/stasis-http_sounds/res/res_sounds.c
URL: http://svnview.digium.com/svn/asterisk/team/kmoore/stasis-http_sounds/res/res_sounds.c?view=diff&rev=387798&r1=387797&r2=387798
==============================================================================
--- team/kmoore/stasis-http_sounds/res/res_sounds.c (original)
+++ team/kmoore/stasis-http_sounds/res/res_sounds.c Tue May  7 09:08:45 2013
@@ -155,7 +155,7 @@
 	}
 
 	ast_str_set(&sounds_dir, 0, "%s/sounds", ast_config_AST_DATA_DIR);
-	
+
 	srcdir = opendir(ast_str_buffer(sounds_dir));
 
 	if (srcdir == NULL) {
@@ -506,7 +506,7 @@
 	} else {
 		ast_str_set(&sounds_lang_dir, 0, "%s/sounds/%s", ast_config_AST_DATA_DIR, lang);
 	}
-	
+
 	srcdir = opendir(ast_str_buffer(sounds_lang_dir));
 	if (srcdir == NULL) {
 		ast_log(LOG_ERROR, "Failed to open %s\n", ast_str_buffer(sounds_lang_dir));




More information about the asterisk-commits mailing list