summaryrefslogtreecommitdiff
path: root/apps/codecs/libatrac/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libatrac/main.c')
-rw-r--r--apps/codecs/libatrac/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libatrac/main.c b/apps/codecs/libatrac/main.c
index 30307c2946..ca3c39a68e 100644
--- a/apps/codecs/libatrac/main.c
+++ b/apps/codecs/libatrac/main.c
@@ -149,7 +149,7 @@ int main(int argc, char *argv[])
149 /* output raw audio frames that are sent to the decoder into separate files */ 149 /* output raw audio frames that are sent to the decoder into separate files */
150#ifdef DUMP_RAW_FRAMES 150#ifdef DUMP_RAW_FRAMES
151 snprintf(filename,sizeof(filename),"dump%d.raw",++x); 151 snprintf(filename,sizeof(filename),"dump%d.raw",++x);
152 fd_out = open(filename,O_WRONLY|O_CREAT|O_APPEND); 152 fd_out = open(filename,O_WRONLY|O_CREAT|O_APPEND, 0666);
153 write(fd_out,pkt.frames[i],sps); 153 write(fd_out,pkt.frames[i],sps);
154 close(fd_out); 154 close(fd_out);
155#endif 155#endif