mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 11:58:40 +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:
@@ -324,7 +324,7 @@ static int handle_show_version_files(int fd, int argc, char *argv[])
|
||||
#undef FORMAT
|
||||
}
|
||||
|
||||
static char *complete_show_version_files(char *line, char *word, int pos, int state)
|
||||
static char *complete_show_version_files(const char *line, const char *word, int pos, int state)
|
||||
{
|
||||
struct file_version *find;
|
||||
int which = 0;
|
||||
|
||||
Reference in New Issue
Block a user