Skip to content

Commit

Permalink
style(core.hpp): 修复释放内存提示格式
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxLHy0424 committed Dec 15, 2024
1 parent b344968 commit 8e83ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ namespace core {
}
std::printf( ":: 执行命令.\n%s\n", std::string( 50, '-' ).c_str() );
system( cmd.c_str() );
std::printf( "%s\n::释放内存.", std::string( 50, '-' ).c_str() );
std::printf( "%s\n:: 释放内存.", std::string( 50, '-' ).c_str() );
return CONSOLE_UI_REVERT;
}
rule_op( const char _mode, const rule_data_node &_rule )
Expand Down

0 comments on commit 8e83ae3

Please sign in to comment.