[asterisk-commits] ivaxer: branch ivaxer/ast_storage r281289 - /team/ivaxer/ast_storage/res/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sun Aug 8 14:47:06 CDT 2010


Author: ivaxer
Date: Sun Aug  8 14:47:02 2010
New Revision: 281289

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=281289
Log:
code guidelines fixes

Modified:
    team/ivaxer/ast_storage/res/res_storage_odbc.c

Modified: team/ivaxer/ast_storage/res/res_storage_odbc.c
URL: http://svnview.digium.com/svn/asterisk/team/ivaxer/ast_storage/res/res_storage_odbc.c?view=diff&rev=281289&r1=281288&r2=281289
==============================================================================
--- team/ivaxer/ast_storage/res/res_storage_odbc.c (original)
+++ team/ivaxer/ast_storage/res/res_storage_odbc.c Sun Aug  8 14:47:02 2010
@@ -359,7 +359,6 @@
 		SQLBindParameter(stmt, 4, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, 3, 0, (void *)"txt", 0, NULL);
 	}
 
-
 	return stmt;
 }
 
@@ -445,7 +444,6 @@
 	}
 	return NULL;
 }
-
 
 static SQLHSTMT execute_put_query(struct odbc_obj *obj, void *arg)
 {
@@ -657,7 +655,8 @@
 	return 0;
 }
 
-static struct ast_storage_fileobject *fetch_fileobject(SQLHSTMT stmt) {
+static struct ast_storage_fileobject *fetch_fileobject(SQLHSTMT stmt)
+{
 	SQLRETURN ret;
 	SQLSMALLINT colcount, collen;
 	SQLULEN colsize;
@@ -718,7 +717,8 @@
 	return NULL;
 }
 
-static SQLHSTMT prepare_listdir_query(struct odbc_obj *obj, void *arg) {
+static SQLHSTMT prepare_listdir_query(struct odbc_obj *obj, void *arg)
+{
 	SQLHSTMT stmt;
 	SQLRETURN ret;
 	struct listdir_query_data *qdata = (struct listdir_query_data *) arg;




More information about the asterisk-commits mailing list