Author: timbo
Date: Fri Feb  3 07:13:41 2012
New Revision: 15124

Modified:
   dbi/trunk/Changes
   dbi/trunk/Driver_xst.h
   dbi/trunk/dbixs_rev.h

Log:
Fixed compiler warnings in Driver_xst.h (Martin J. Evans)

Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes   (original)
+++ dbi/trunk/Changes   Fri Feb  3 07:13:41 2012
@@ -6,6 +6,11 @@
 
 =cut
 
+=head2 Changes in DBI 1.618 TBD
+
+  Fixed compiler warnings in Driver_xst.h (Martin J. Evans)
+
+
 =head2 Changes in DBI 1.617 (svn r15107) 30th January 2012
 
   NOTE: The officially supported minimum perl version will change

Modified: dbi/trunk/Driver_xst.h
==============================================================================
--- dbi/trunk/Driver_xst.h      (original)
+++ dbi/trunk/Driver_xst.h      Fri Feb  3 07:13:41 2012
@@ -69,7 +69,7 @@
         }
        sprintf(errmsg,"called with %d bind variables when %d are needed",
                (int)items-1, DBIc_NUM_PARAMS(imp_sth));
-        DBIh_SET_ERR_CHAR(sth, imp_sth, "-1", -1, errmsg, Nullch, Nullch);
+        DBIh_SET_ERR_CHAR(sth, (imp_xxh_t*)imp_sth, "-1", -1, errmsg, Nullch, 
Nullch);
        return 0;
     }
     idx = sv_2mortal(newSViv(0));
@@ -95,7 +95,7 @@
     if (SvOK(slice)) {  /* should never get here */
        char errmsg[99];
        sprintf(errmsg,"slice param not supported by XS version of 
fetchall_arrayref");
-        DBIh_SET_ERR_CHAR(sth, imp_sth, "-1", -1, errmsg, Nullch, Nullch);
+        DBIh_SET_ERR_CHAR(sth, (imp_xxh_t*)imp_sth, "-1", -1, errmsg, Nullch, 
Nullch);
        return &PL_sv_undef;
     }
     else {

Modified: dbi/trunk/dbixs_rev.h
==============================================================================
--- dbi/trunk/dbixs_rev.h       (original)
+++ dbi/trunk/dbixs_rev.h       Fri Feb  3 07:13:41 2012
@@ -1,4 +1,4 @@
-/* Mon Jan  2 15:17:49 2012 */
-/* Mixed revision working copy (15055M:15062) */
+/* Fri Feb  3 15:12:19 2012 */
+/* Mixed revision working copy (15106M:15111) */
 /* Code modified since last checkin */
-#define DBIXS_REVISION 15055
+#define DBIXS_REVISION 15106

Reply via email to