mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-08 19:08:14 +00:00
fix various compiler warnings
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5491 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -119,7 +119,7 @@ static struct chan_oss_pvt {
|
||||
|
||||
static struct ast_channel *oss_request(const char *type, int format, void *data, int *cause);
|
||||
static int oss_digit(struct ast_channel *c, char digit);
|
||||
static int oss_text(struct ast_channel *c, char *text);
|
||||
static int oss_text(struct ast_channel *c, const char *text);
|
||||
static int oss_hangup(struct ast_channel *c);
|
||||
static int oss_answer(struct ast_channel *c);
|
||||
static struct ast_frame *oss_read(struct ast_channel *chan);
|
||||
@@ -484,7 +484,7 @@ static int oss_digit(struct ast_channel *c, char digit)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int oss_text(struct ast_channel *c, char *text)
|
||||
static int oss_text(struct ast_channel *c, const char *text)
|
||||
{
|
||||
ast_verbose( " << Console Received text %s >> \n", text);
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user