[libc][unistd.h] define F_OK

This commit is contained in:
Meco Man
2023-01-02 15:01:20 -05:00
committed by Man, Jianting (Meco)
parent 431579a166
commit e97ba95f71
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ static void ulog_file_backend_flush_with_buf(struct ulog_backend *backend)
if (be->cur_log_file_fd < 0)
{
/* check log file directory */
if (access(be->cur_log_dir_path, 0) < 0)
if (access(be->cur_log_dir_path, F_OK) < 0)
{
mkdir(be->cur_log_dir_path, 0);
}