Whamcloud - gitweb
fix test as Andreas comment.
authorshadow <shadow>
Thu, 8 Nov 2007 08:48:15 +0000 (08:48 +0000)
committershadow <shadow>
Thu, 8 Nov 2007 08:48:15 +0000 (08:48 +0000)
b=12052

lustre/autoconf/lustre-core.m4

index 34f43f6..a510c00 100644 (file)
@@ -1250,12 +1250,14 @@ AC_TRY_RUN([
 
 #include <stdio.h>
 
-main(void)
+int main(void)
 {
     int size = mds_xattr_acl_size(LUSTRE_POSIX_ACL_MAX_ENTRIES);
     FILE *f = fopen("acl.size","w+");
     fprintf(f,"%d", size);
     fclose(f);
+
+    return 0;
 }
 
 ],[