mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 11:43:14 +08:00
fix: making it strings
This commit is contained in:
parent
61b8594cb4
commit
36eb64cef4
1 changed files with 2 additions and 2 deletions
|
@ -139,9 +139,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__linux__) || (__APPLE__)
|
#if defined(__linux__) || (__APPLE__)
|
||||||
# define BLUE_MSG(s) \e[34m(s)\e[0m
|
# define BLUE_MSG(s) "\e[34m(s)\e[0m"
|
||||||
#else
|
#else
|
||||||
# define BLUE_MSG(s) (s)
|
# define BLUE_MSG(s) "(s)"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern int ukbhit(void);
|
extern int ukbhit(void);
|
||||||
|
|
Loading…
Reference in a new issue