mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
comparison of integers of different signs [-Wsign-compare]
This commit is contained in:
parent
ce606b51fc
commit
97676d3210
17 changed files with 85 additions and 86 deletions
|
@ -19,7 +19,7 @@
|
|||
#include "cmddata.h" //for g_debugmode
|
||||
|
||||
void AppendGraph(bool redraw, int clock, int bit);
|
||||
int ClearGraph(bool redraw);
|
||||
size_t ClearGraph(bool redraw);
|
||||
size_t getFromGraphBuf(uint8_t *buff);
|
||||
int GetAskClock(const char *str, bool printAns);
|
||||
int GetPskClock(const char *str, bool printAns);
|
||||
|
@ -40,7 +40,7 @@ bool HasGraphData(void);
|
|||
#define GRAPH_RESTORE 0
|
||||
|
||||
extern int GraphBuffer[MAX_GRAPH_TRACE_LEN];
|
||||
extern int GraphTraceLen;
|
||||
extern size_t GraphTraceLen;
|
||||
extern int s_Buff[MAX_GRAPH_TRACE_LEN];
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue