]> err.no Git - sope/commitdiff
fixed a warning
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 6 Sep 2004 11:21:15 +0000 (11:21 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 6 Sep 2004 11:21:15 +0000 (11:21 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@108 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-gdl1/GDLAccess/ChangeLog
sope-gdl1/GDLAccess/EOSQLQualifier.m
sope-gdl1/GDLAccess/Version

index f382b4ffee8c9a7642ec23f2ef2232a873a2d172..5c780556c27feedceb69e2519d89b6330c30e155 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-06  Helge Hess  <helge.hess@skyrix.com>
+
+       * EOSQLQualifier.m: fixed a compile warning related to scanner handler
+         and NSArray argument instead of va_list (v1.1.39)
+
 2004-09-06  Helge Hess  <helge.hess@opengroupware.org>
 
        * EOAdaptorChannel.m: added
index 50425bb1d71230b10ece87ea5cb91b309a8c99fa..2d7e5cca1d4ac23f6336247d84dbc02025358146 100644 (file)
@@ -332,9 +332,11 @@ static EONull *null          = nil;
                    withObject:_qualifierFormat
                    withObject:args];
 #else
+  // TODO: args is an NSArray, PrintfFormatScanner expects a va_list?
+  //       I think that this is OK because we use EOQualifierEnumScannerHandler
   qualifierString = 
     [formatScanner stringWithFormat:_qualifierFormat
-                   arguments:args];
+                   arguments:(void *)args];
 #endif
 
   [formatScanner  release]; formatScanner  = nil;
index 7087ff32410f53681d82e1380c7ec57332dea764..9ac699ea80a6e6616dc06f80f8d36efe921d010e 100644 (file)
@@ -1,3 +1,3 @@
 # $Id: Version 1 2004-08-20 10:38:46Z znek $
 
-SUBMINOR_VERSION:=38
+SUBMINOR_VERSION:=39