Author: turnstep
Date: Mon May 10 11:42:50 2010
New Revision: 13973
Modified:
DBD-Pg/trunk/quote.c
DBD-Pg/trunk/quote.h
Log:
Remove some const declarations, per complaints.
Modified: DBD-Pg/trunk/quote.c
==============================================================================
--- DBD-Pg/trunk/quote.c (original)
+++ DBD-Pg/trunk/quote.c Mon May 10 11:42:50 2010
@@ -322,7 +322,7 @@
return result;
}
-char * quote_float(const char *string, STRLEN len, STRLEN *retlen, int estring)
+char * quote_float(char *string, STRLEN len, STRLEN *retlen, int estring)
{
dTHX;
char * result;
Modified: DBD-Pg/trunk/quote.h
==============================================================================
--- DBD-Pg/trunk/quote.h (original)
+++ DBD-Pg/trunk/quote.h Mon May 10 11:42:50 2010
@@ -6,7 +6,7 @@
char * quote_bool(const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_integer(const char *string, STRLEN len, STRLEN *retlen, int
estring);
char * quote_int(const char *string, STRLEN len, STRLEN *retlen, int estring);
-char * quote_float(const char *string, STRLEN len, STRLEN *retlen, int
estring);
+char * quote_float(char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_name(const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_geom(const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_path(const char *string, STRLEN len, STRLEN *retlen, int estring);