dect
/
asterisk
Archived
13
0
Fork 0

truncate 'const const' to 'const'

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4244 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2004-11-14 22:38:34 +00:00
parent ba5c78268d
commit 5285384c6f
1 changed files with 2 additions and 2 deletions

4
file.c
View File

@ -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];