X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/f5fca2ed62fa1948cf1cc4eabaa6dc4cc27762cd..4d2e4eea58a6a2411855f14590dc3582150baaea:/client/cmdlfpcf7931.c

diff --git a/client/cmdlfpcf7931.c b/client/cmdlfpcf7931.c
index c31a9f9c..0d8fb93d 100644
--- a/client/cmdlfpcf7931.c
+++ b/client/cmdlfpcf7931.c
@@ -10,7 +10,7 @@
 
 #include <stdio.h>
 #include <string.h>
-#include "proxusb.h"
+#include "proxmark3.h"
 #include "ui.h"
 #include "graph.h"
 #include "cmdparser.h"
@@ -25,7 +25,8 @@ int CmdLFPCF7931Read(const char *Cmd)
 {
   UsbCommand c = {CMD_PCF7931_READ};
   SendCommand(&c);
-  WaitForResponse(CMD_ACK);
+  UsbCommand resp;
+  WaitForResponse(CMD_ACK,&resp);
   return 0;
 }