You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/09/11 09:40:30 UTC

svn commit: r813743 - /incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h

Author: spoole
Date: Fri Sep 11 09:40:30 2009
New Revision: 813743

URL: http://svn.apache.org/viewvc?rev=813743&view=rev
Log:
fixed syntax error in cjvmti header introduced when adding macros for AIX

Modified:
    incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h

Modified: incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h?rev=813743&r1=813742&r2=813743&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h (original)
+++ incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h Fri Sep 11 09:40:30 2009
@@ -36,7 +36,7 @@
 #include <time.h>
 #include <malloc.h>
 
-#ifdef __linux__ || __aix__
+#if defined( __linux__) || defined(__aix__)
 #define FPOS_T off_t
 #define FSEEK(x,y,z) fseeko((x),(y),(z))
 #define FTELL(x) ftello((x))