This commit is contained in:
Philippe Teuwen 2019-05-05 22:04:35 +02:00
commit 65bd945b54
4 changed files with 13 additions and 13 deletions

View file

@ -91,7 +91,7 @@ int CmdHFTune(const char *Cmd) {
PrintAndLogEx(WARNING, "Timeout while waiting for Proxmark HF measure, aborting"); PrintAndLogEx(WARNING, "Timeout while waiting for Proxmark HF measure, aborting");
return PM3_ETIMEOUT; return PM3_ETIMEOUT;
} }
if (resp.status!=PM3_EOPABORTED) if (resp.status != PM3_EOPABORTED)
return resp.status; return resp.status;
return PM3_SUCCESS; return PM3_SUCCESS;
} }

View file

@ -613,7 +613,7 @@ int TestProxmark(void) {
#if defined(_WIN32) #if defined(_WIN32)
pthread_mutex_unlock(&spMutex); pthread_mutex_unlock(&spMutex);
#endif #endif
if ( res != PM3_SUCCESS ) { if (res != PM3_SUCCESS) {
PrintAndLogEx(ERR, "UART reconfigure failed"); PrintAndLogEx(ERR, "UART reconfigure failed");
return res; return res;
} }