Author: timbo
Date: Sat Feb  4 12:22:55 2012
New Revision: 15127

Modified:
   dbi/trunk/Changes
   dbi/trunk/DBI.xs

Log:
Fixed compiler warning in DBI.xs (H.Merijn Brand)

Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes   (original)
+++ dbi/trunk/Changes   Sat Feb  4 12:22:55 2012
@@ -9,6 +9,7 @@
 =head2 Changes in DBI 1.618 TBD
 
   Fixed compiler warnings in Driver_xst.h (Martin J. Evans)
+  Fixed compiler warning in DBI.xs (H.Merijn Brand)
 
   Corrected typo in example in docs (David Precious)
   Added note that calling clone() without an arg may warn in future.

Modified: dbi/trunk/DBI.xs
==============================================================================
--- dbi/trunk/DBI.xs    (original)
+++ dbi/trunk/DBI.xs    Sat Feb  4 12:22:55 2012
@@ -4484,7 +4484,7 @@
 #ifdef MULTIPLICITY
                 (void *)my_perl,
 #else
-                NULL,
+                (void*)NULL,
 #endif
                 log_where(Nullsv, 0, "", "", 1, 1, 0)
             );

Reply via email to