From 3539a390fed6e6ebeea64c3de1109b8b81363a1f Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sun, 14 Nov 2004 22:38:34 +0000 Subject: [PATCH] truncate 'const const' to 'const' git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4244 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file.c b/file.c index 2ec480bfd6..7880114e29 100755 --- a/file.c +++ b/file.c @@ -278,7 +278,7 @@ static int copy(const char *infile, const char *outfile) return 0; } -static char *build_filename(const const char *filename, const char *ext) +static char *build_filename(const char *filename, const char *ext) { char *fn; int fnsize = 0; @@ -297,7 +297,7 @@ static char *build_filename(const const char *filename, const char *ext) } -static int exts_compare(const char *exts, const const char *type) +static int exts_compare(const char *exts, const char *type) { char *stringp = NULL, *ext; char tmp[256];