summaryrefslogtreecommitdiff
path: root/cdr/cdr_csv.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2007-12-18 09:46:18 +0000
committerLuigi Rizzo <rizzo@icir.org>2007-12-18 09:46:18 +0000
commitfd88390af7bcd02958b434d0b6fdb494e721c06c (patch)
treed2fc0e3293737a646ab91cc4ef176382ed433047 /cdr/cdr_csv.c
parent3ff440bd37445c9261b64fcb08f0d20c976b34e2 (diff)
remove unnecessary (char *) casts for ast_config_AST_* variables.
There are some left in the .flex files, left to the maintainer... git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@93582 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'cdr/cdr_csv.c')
-rw-r--r--cdr/cdr_csv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdr/cdr_csv.c b/cdr/cdr_csv.c
index 1c0da16d9..cca1e8714 100644
--- a/cdr/cdr_csv.c
+++ b/cdr/cdr_csv.c
@@ -258,7 +258,7 @@ static int writefile(char *s, char *acc)
return -1;
}
- snprintf(tmp, sizeof(tmp), "%s/%s/%s.csv", (char *)ast_config_AST_LOG_DIR,CSV_LOG_DIR, acc);
+ snprintf(tmp, sizeof(tmp), "%s/%s/%s.csv", ast_config_AST_LOG_DIR,CSV_LOG_DIR, acc);
ast_mutex_lock(&acf_lock);
if (!(f = fopen(tmp, "a"))) {