From 21d21f89c04ebaad6822311ceadd13275b357513 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Wed, 1 Feb 2006 23:05:28 +0000 Subject: use string fields for some stuff in ast_channel const-ify some more APIs remove 'type' field from ast_channel, in favor of the one in the channel's tech structure allow string field module users to specify the 'chunk size' for pool allocations update chan_alsa to be compatible with recent const-ification patches git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9060 f38db490-d61c-443f-a65b-d21fe96a405b --- image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'image.c') diff --git a/image.c b/image.c index df476865f..71089744f 100644 --- a/image.c +++ b/image.c @@ -94,7 +94,7 @@ static int file_exists(char *filename) return 0; } -static void make_filename(char *buf, int len, char *filename, char *preflang, char *ext) +static void make_filename(char *buf, int len, char *filename, const char *preflang, char *ext) { if (filename[0] == '/') { if (preflang && strlen(preflang)) @@ -109,7 +109,7 @@ static void make_filename(char *buf, int len, char *filename, char *preflang, ch } } -struct ast_frame *ast_read_image(char *filename, char *preflang, int format) +struct ast_frame *ast_read_image(char *filename, const char *preflang, int format) { struct ast_imager *i; char buf[256]; -- cgit v1.2.3