mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-11 12:28:27 +00:00
constify arguments in more places where strings should not be modified (issue #6286)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8203 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -242,7 +242,7 @@ int ast_module_reload(const char *name);
|
||||
* \return A possible completion of the partial match, or NULL if no matches
|
||||
* were found.
|
||||
*/
|
||||
char *ast_module_helper(char *line, char *word, int pos, int state, int rpos, int needsreload);
|
||||
char *ast_module_helper(const char *line, const char *word, int pos, int state, int rpos, int needsreload);
|
||||
|
||||
/*!
|
||||
* \brief Register a function to be executed before Asterisk exits.
|
||||
|
||||
Reference in New Issue
Block a user