Author: timbo
Date: Fri Nov 27 13:55:22 2009
New Revision: 13616

Modified:
   dbi/trunk/DBI.xs

Log:
Fixed UVdf to be UVuf and slapped my wrist for not testing before checkin.
(Thanks to Martin for alerting me)


Modified: dbi/trunk/DBI.xs
==============================================================================
--- dbi/trunk/DBI.xs    (original)
+++ dbi/trunk/DBI.xs    Fri Nov 27 13:55:22 2009
@@ -529,7 +529,7 @@
         }
         /* we don't use SvPV here since we don't want to alter sv in _any_ way 
 */
         if (SvUOK(sv))
-             nsv = newSVpvf("%"UVdf, SvUVX(sv));
+             nsv = newSVpvf("%"UVuf, SvUVX(sv));
         else if (SvIOK(sv))
              nsv = newSVpvf("%"IVdf, SvIVX(sv));
         else nsv = newSVpvf("%"NVgf, SvNVX(sv));

Reply via email to