aboutsummaryrefslogtreecommitdiffstats
path: root/main/file.c
diff options
context:
space:
mode:
authormnicholson <mnicholson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-25 00:19:55 +0000
committermnicholson <mnicholson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-25 00:19:55 +0000
commit7bf3c44abe26f6ce1dc917c33e5ed4a98e80776d (patch)
treefa71d48464063456eece32ef134d63c619ef7c05 /main/file.c
parent2ca1ca67860ad335abeafecd61432b81062f749f (diff)
Fix compiling in dev mode.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@158925 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/file.c')
-rw-r--r--main/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/file.c b/main/file.c
index 79c5c1bf2..61d45fe1c 100644
--- a/main/file.c
+++ b/main/file.c
@@ -898,6 +898,7 @@ int ast_streamfile(struct ast_channel *chan, const char *filename, const char *p
struct ast_filestream *vfs=NULL;
char fmt[256];
int seekattempt;
+ int res;
fs = ast_openstream(chan, filename, preflang);
if (!fs) {
@@ -919,7 +920,6 @@ int ast_streamfile(struct ast_channel *chan, const char *filename, const char *p
ast_debug(1, "Ooh, found a video stream, too, format %s\n", ast_getformatname(vfs->fmt->format));
}
- int res;
if (ast_test_flag(chan, AST_FLAG_MASQ_NOSTREAM))
fs->orig_chan_name = ast_strdup(chan->name);
if (ast_applystream(chan, fs))