From ba106c3df72d346e298cb06fe0e61653ef4680a5 Mon Sep 17 00:00:00 2001 From: HJ Date: Thu, 17 Sep 2020 18:17:13 +0800 Subject: [PATCH] update src/app_file.c. --- src/app_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app_file.c b/src/app_file.c index 264912f..e096521 100755 --- a/src/app_file.c +++ b/src/app_file.c @@ -29,7 +29,7 @@ static int g_memoryPageSize = 0; int InitVerify(FileRead *file, const char *filePath, int *handle) { if (handle == NULL || file == NULL || filePath == NULL) { - LOG_ERROR("file open error"); + LOG_ERROR("invalid input"); return V_ERR_FILE_OPEN; } char *path = APPV_MALLOC(PATH_MAX + 1); -- Gitee