diff options
author | David Robillard <d@drobilla.net> | 2010-12-23 22:06:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-23 22:06:40 +0000 |
commit | 2fa250041ea04d46c6fbe2875be2b8ded0f0b192 (patch) | |
tree | 68f9f555e54a0dc0c9325ed2232bb6ecf7090b97 /ext/atom.lv2 | |
parent | b7aadb9bcdc9a667d6b7c2ad2edb157465bbffed (diff) | |
download | lv2-2fa250041ea04d46c6fbe2875be2b8ded0f0b192.tar.xz |
Compilation fixes.
Diffstat (limited to 'ext/atom.lv2')
-rw-r--r-- | ext/atom.lv2/atom-helpers.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/atom.lv2/atom-helpers.h b/ext/atom.lv2/atom-helpers.h index d48580f..b470c01 100644 --- a/ext/atom.lv2/atom-helpers.h +++ b/ext/atom.lv2/atom-helpers.h @@ -22,6 +22,7 @@ #include <stdint.h> #include <stdbool.h> #include <string.h> +#include <stdio.h> #include "lv2/lv2plug.in/ns/ext/atom/atom.h" /** @file @@ -144,7 +145,7 @@ lv2_atom_is_a(LV2_Atom* object, { if (lv2_atom_is_null(object)) return false; - + if (object->type == type) return true; |