aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-14 22:38:34 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-14 22:38:34 +0000
commit5285384c6f80f15fe25698d58da19dac6e1ccda3 (patch)
tree4f58567c62a47bbf37502ec8da3b156ef4ba8d85 /file.c
parentba5c78268d9fb06131ef7f38a0497dffa957bdb1 (diff)
truncate 'const const' to 'const'
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4244 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'file.c')
-rwxr-xr-xfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index 2ec480bfd..7880114e2 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];