aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-01 23:20:25 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-01 23:20:25 +0000
commit46ef3b9a485256d6d7d35ec9fb0718d306bcdf43 (patch)
treeb055fc618dde76e3198bffad99be9d9f375f76ab
parent424bcf9951af5f7f35da6f1ed950813dbd8d3c1a (diff)
Change the comment of deprecated to an actual compiler deprecation
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@115102 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--include/asterisk/res_odbc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/res_odbc.h b/include/asterisk/res_odbc.h
index 7f1f55812..690b1f5b9 100644
--- a/include/asterisk/res_odbc.h
+++ b/include/asterisk/res_odbc.h
@@ -61,7 +61,7 @@ struct odbc_obj {
* This function really only ever worked with MySQL, where the statement handle is
* not prepared on the server. If you are not using MySQL, you should avoid it.
*/
-int ast_odbc_smart_execute(struct odbc_obj *obj, SQLHSTMT stmt); /* DEPRECATED */
+int ast_odbc_smart_execute(struct odbc_obj *obj, SQLHSTMT stmt) __attribute__ ((deprecated));
/*! \brief Retrieves a connected ODBC object
* \param name The name of the ODBC class for which a connection is needed.