mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
mingw seems to doesnt like backslashes
This commit is contained in:
parent
6ad73d25fd
commit
6cbebb29dc
1 changed files with 3 additions and 3 deletions
|
@ -24,8 +24,8 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#define ABOVE "..\\"
|
#define ABOVE "../"
|
||||||
#define PATHSEP "\\"
|
#define PATHSEP "/"
|
||||||
#else
|
#else
|
||||||
#define ABOVE "../"
|
#define ABOVE "../"
|
||||||
#define PATHSEP "/"
|
#define PATHSEP "/"
|
||||||
|
@ -60,7 +60,7 @@ struct version_information_t {
|
||||||
char clean; /* 1: Tree was clean, no local changes. 0: Tree was unclean. 2: Couldn't be determined */
|
char clean; /* 1: Tree was clean, no local changes. 0: Tree was unclean. 2: Couldn't be determined */
|
||||||
char gitversion[50]; /* String with the git revision */
|
char gitversion[50]; /* String with the git revision */
|
||||||
char buildtime[30]; /* string with the build time */
|
char buildtime[30]; /* string with the build time */
|
||||||
char armsrc[10]; /* sha256sum of sha256sum of armsrc files */
|
char armsrc[10]; /* sha256sum of sha256sum of armsrc && common_arm files */
|
||||||
} PACKED;
|
} PACKED;
|
||||||
|
|
||||||
// debug
|
// debug
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue