Displaying 1 result from an estimated 1 matches for "8ad3698".
Did you mean:
873d3698
2012 Apr 17
1
[PATCH 2/2] replace local_strtoull with _strtoui64 in windows
Previous patch replaced the other local_strtoll with _strtoi64
---
include/share/compat.h | 3 ++-
src/metaflac/options.c | 23 +----------------------
2 files changed, 3 insertions(+), 23 deletions(-)
diff --git a/include/share/compat.h b/include/share/compat.h
index ff5c8af..8ad3698 100644
--- a/include/share/compat.h
+++ b/include/share/compat.h
@@ -61,9 +61,10 @@
#if defined(_MSC_VER)
#define strtoll _strtoi64
+#define strtoull _strtoui64
#endif
-#if defined(_MSC_VER)
+#if defined(_MSC_VER)
#define restrict __restrict
#endif
diff --git a/src/metaflac/options.c b/...