[Forensics-changes] [yara] 40/192: Fix issue with mingw not recognising %llx and %lld printf formats
Hilko Bengen
bengen at moszumanska.debian.org
Sat Jul 1 10:31:44 UTC 2017
This is an automated email from the git hooks/post-receive script.
bengen pushed a commit to annotated tag v3.6.0
in repository yara.
commit 197477632635e99ff3a1234eaebc4be101dde168
Author: plusvic <plusvic at gmail.com>
Date: Fri Sep 23 11:50:47 2016 +0200
Fix issue with mingw not recognising %llx and %lld printf formats
---
yara.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/yara.c b/yara.c
index 7c27bc8..c489f67 100644
--- a/yara.c
+++ b/yara.c
@@ -38,8 +38,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <windows.h>
-#define PRIx64 "llx"
-#define PRId64 "lld"
+#define PRIx64 "I64x"
+#define PRId64 "I64d"
#endif
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/forensics/yara.git
More information about the forensics-changes
mailing list