cleaning up moduleloader - incomplete

This commit is contained in:
Chris Punches
2025-02-23 20:22:35 -05:00
parent 496cc9d4e6
commit d320abf1ca
4 changed files with 153 additions and 65 deletions

View File

@@ -46,5 +46,5 @@ int main( int argc, char* argv[] )
DPMError execute_error = loader.execute_module(args.module_name, args.command);
// pair result with a message and exit with the appropriate error code
return print_error(execute_error, args.module_name, args.module_path);
return print_error( execute_error, args.module_name, args.module_path );
}