mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-11 04:18:21 +00:00
Bug 5858 - Make the chanvars.c functions return a 'const char *'
This should prevent us from unintentionally changing variable values when they're returned from pbx_builtin_getvar_helper. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7304 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -389,7 +389,7 @@ extern char* ast_getformatname_multiple(char *buf, size_t size, int format);
|
||||
* \param name string of format
|
||||
* \return This returns the form of the format in binary on success, 0 on error.
|
||||
*/
|
||||
extern int ast_getformatbyname(char *name);
|
||||
extern int ast_getformatbyname(const char *name);
|
||||
|
||||
/*! \brief Get a name from a format
|
||||
* Gets a name from a format
|
||||
|
||||
Reference in New Issue
Block a user