summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-01-31 22:35:46 +0000
committerDavid Robillard <d@drobilla.net>2012-01-31 22:35:46 +0000
commit73dee9781a50586129c944cf5e71879b1c970def (patch)
tree0d00d15028751b5ebd7f07d7b8daefbf11423b87 /src
parentfe3491419b084c2d41ad9f29274325e6c0043856 (diff)
downloadzix-73dee9781a50586129c944cf5e71879b1c970def.tar.gz
zix-73dee9781a50586129c944cf5e71879b1c970def.tar.bz2
zix-73dee9781a50586129c944cf5e71879b1c970def.zip
Fix compilation on sane platforms.
git-svn-id: http://svn.drobilla.net/zix/trunk@52 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
Diffstat (limited to 'src')
-rw-r--r--src/tree_debug.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tree_debug.h b/src/tree_debug.h
index c2af4bf..74f4e0e 100644
--- a/src/tree_debug.h
+++ b/src/tree_debug.h
@@ -17,6 +17,10 @@
#ifndef ZIX_TREE_DEBUG_H
#define ZIX_TREE_DEBUG_H
+#ifndef _MSC_VER
+# include <inttypes.h>
+#endif
+
#ifdef ZIX_TREE_DUMP
static void
zix_tree_print(ZixTreeNode* node, int level)