Skip to content

Commit

Permalink
style: Fixes long line
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hui committed Sep 12, 2023
1 parent 66475c7 commit 621797d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fileCLI/fileCLI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 621797d

Please sign in to comment.