ports/databases/pgtcl/files/patch-size_t
Mikhail Teterin 40bd9f0101 Add TCL binding for PostgreSQL client. This used to be part of PostgreSQL
client up to version 7.x, but is not found in 8.x.
2007-06-18 20:45:59 +00:00

13 lines
326 B
Text

size_t is the right type to use, but Tcl's core is not prepared for it.
-mi
--- pgtclCmds.c Mon Jan 15 21:41:07 2007
+++ pgtclCmds.c Mon Jun 18 16:28:31 2007
@@ -3644,5 +3644,5 @@
{
unsigned char *from_binary;
- size_t from_len;
+ int from_len;
unsigned char *to_string;
size_t to_len;