X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/e7707cdb1713b6f0b20e47867f6675de848331e6..d0168f2f4919562e94b22215a182622bca2e2785:/client/cmdmain.c diff --git a/client/cmdmain.c b/client/cmdmain.c index 7bba80f4..c1d730ee 100644 --- a/client/cmdmain.c +++ b/client/cmdmain.c @@ -177,10 +177,11 @@ void UsbCommandReceived(UsbCommand *UC) switch(UC->cmd) { // First check if we are handling a debug message case CMD_DEBUG_PRINT_STRING: { - char s[USB_CMD_DATA_SIZE+1] = {0x00}; + char s[USB_CMD_DATA_SIZE+1]; + memset(s, 0x00, sizeof(s)); size_t len = MIN(UC->arg[0],USB_CMD_DATA_SIZE); memcpy(s,UC->d.asBytes,len); - PrintAndLog("#db# %s ", s); + PrintAndLog("#db# %s", s); return; } break;