From 621797d372c1e3fde98c878e6ebfc0019a812b7b Mon Sep 17 00:00:00 2001 From: Nathan Hui Date: Mon, 11 Sep 2023 18:18:33 -0700 Subject: [PATCH] style: Fixes long line --- src/fileCLI/fileCLI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fileCLI/fileCLI.cpp b/src/fileCLI/fileCLI.cpp index 56e85a10..d80579c4 100644 --- a/src/fileCLI/fileCLI.cpp +++ b/src/fileCLI/fileCLI.cpp @@ -32,7 +32,8 @@ void FileCLI::execute(void) this->dir_stack[this->current_dir] = opendir("/"); if(NULL == this->dir_stack[this->current_dir]) { - FLOG_AddError(FLOG_FS_OPENDIR_FAIL, (uint32_t)this->dir_stack[this->current_dir]); + FLOG_AddError(FLOG_FS_OPENDIR_FAIL, + (uint32_t)this->dir_stack[this->current_dir]); SF_OSAL_printf("Failed to open root" __NL__); return; }