system/lzf: correct the open mode

Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
chao.an 2021-12-20 16:02:22 +08:00 committed by Xiang Xiao
parent 419e6b012a
commit fcd69d1cdf

View File

@ -311,7 +311,6 @@ short_read:
static int open_out(FAR const char *name)
{
int fd;
int m = O_EXCL;
if (g_force)
@ -319,8 +318,7 @@ static int open_out(FAR const char *name)
m = 0;
}
fd = open(name, O_CREAT | O_WRONLY | O_TRUNC | m, 600);
return fd;
return open(name, O_CREAT | O_WRONLY | O_TRUNC | m, 0600);
}
static int compose_name(FAR const char *fname, FAR char *oname, int namelen)