X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/5b760b6cac721c6abd036c0689e713b5a7c700c5..96e7a3a50b11d69da83e67ec78b5a7656bb903de:/client/cmdscript.c diff --git a/client/cmdscript.c b/client/cmdscript.c index f9bbe56e..bd4a3006 100644 --- a/client/cmdscript.c +++ b/client/cmdscript.c @@ -218,7 +218,7 @@ int CmdRun(const char *Cmd) char buf[256]; snprintf(buf, sizeof buf, "./scripts/%s", cmd_name); - printf("Executing file '%s'\n---------------------------\n" , cmd_name); + printf("-----Executing file '%s'\n" , cmd_name); // run the Lua script int error = luaL_loadfile(lua_state, buf); @@ -241,6 +241,6 @@ int CmdRun(const char *Cmd) //luaL_dofile(lua_state, buf); // close the Lua state lua_close(lua_state); - printf("-----------------Finished\n"); + printf("\n-----Finished\n"); }