aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2012-10-02 16:50:57 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2012-10-02 16:50:57 +0000
commiteb45289529645aea99adaf472e4b8185eac256b6 (patch)
treef26b53b027669623342f2c5ca92e3504c937a3db
parent5e0c9333a79d51c2246b7f8c24fd085683fbdf6f (diff)
fixed closing parenthesis in iemlib.h
svn path=/trunk/externals/iem/iem_spec2/; revision=16322
-rw-r--r--src/iemlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iemlib.h b/src/iemlib.h
index a4c0e12..b2718fa 100644
--- a/src/iemlib.h
+++ b/src/iemlib.h
@@ -100,7 +100,7 @@ union tabfudge_f
#endif
/* on 64bit systems we cannot use garray_getfloatarray... */
-#if ((defined PD_MAJOR_VERSION && defined PD_MINOR_VERSION) && (PD_MAJOR_VERSION > 0 || PD_MINOR_VERSION > 40)
+#if ((defined PD_MAJOR_VERSION && defined PD_MINOR_VERSION) && (PD_MAJOR_VERSION > 0 || PD_MINOR_VERSION > 40))
# define iemarray_t t_word
# define iemarray_getarray garray_getfloatwords
# define iemarray_getfloat(pointer, index) (pointer[index].w_float)