From 57bb8489c0ae33da3c6fd1a6bc3d9fc07054911a Mon Sep 17 00:00:00 2001 From: yangbiao59 Date: Mon, 4 Aug 2025 07:16:35 +0000 Subject: [PATCH] =?UTF-8?q?lseek=5Fcore=E4=B8=AD=E6=A0=B8=E5=BF=83?= =?UTF-8?q?=E5=87=BD=E6=95=B0=E5=8F=82=E6=95=B0=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yangbiao59 --- interfaces/kits/js/src/mod_fs/properties/lseek_core.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/interfaces/kits/js/src/mod_fs/properties/lseek_core.cpp b/interfaces/kits/js/src/mod_fs/properties/lseek_core.cpp index dfec873c9..04e87170e 100644 --- a/interfaces/kits/js/src/mod_fs/properties/lseek_core.cpp +++ b/interfaces/kits/js/src/mod_fs/properties/lseek_core.cpp @@ -22,8 +22,7 @@ namespace FileManagement { namespace ModuleFileIO { using namespace std; -FsResult LseekCore::DoLseek(const int32_t &fd, const int64_t &offset, - const optional &pos) +FsResult LseekCore::DoLseek(const int32_t &fd, const int64_t &offset, const optional &pos) { if (fd < 0) { HILOGE("Invalid fd from JS first argument"); -- Gitee