On 2006-07-25 02:02:13 -0400 Jack Johnson <[EMAIL PROTECTED]> wrote:

Compiling file NSPredicate.m ...
NSPredicate.m: In function '+[NSPredicate predicateWithFormat:argumentArray:]':
NSPredicate.m:162: error: incompatible type for argument 3 of
'initWithString:args:vargs:'

Try changing the 0 on line 162 of Source/NSPredicate.m to NULL:

--- Source/NSPredicate.m       (revision 23186)
+++ Source/NSPredicate.m       (working copy)
@@ -159,7 +159,7 @@

   s = [[GSPredicateScanner alloc] initWithString: format
                                            args: args
-                                          vargs: 0];
+                                          vargs: NULL];
   p = [s parse];
   RELEASE(s);
   return p;

--
Hubert Chan - email & Jabber: [EMAIL PROTECTED] - http://www.uhoreg.ca/
PGP/GnuPG key: 1024D/124B61FA   (Key available at wwwkeys.pgp.net)
Fingerprint: 96C5 012F 5F74 A5F7 1FF7  5291 AF29 C719 124B 61FA

_______________________________________________
Etoile-dev mailing list
[email protected]
https://mail.gna.org/listinfo/etoile-dev

Reply via email to