summaryrefslogtreecommitdiff
path: root/src/str.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2006-04-20 21:44:40 +0000
committerMichael Jennings <mej@kainx.org>2006-04-20 21:44:40 +0000
commitce56ce20df358e1b1718d79debca5a62d875b7d3 (patch)
treef10ec5d2bd00930eb171ee46a9c58093fe6bc32b /src/str.c
parent8b56abf863d4bc8c5c542df80a7eaf236ca8dc9a (diff)
downloadlibast-ce56ce20df358e1b1718d79debca5a62d875b7d3.tar.gz
Thu Apr 20 16:44:39 2006 Michael Jennings (mej)
Added mbuff and ustr to testing routines. Fleshed out ustr class; doesn't do UTF-8 yet though. Fixed array removal code. I have no idea how that was working before. ---------------------------------------------------------------------- SVN revision: 22271
Diffstat (limited to 'src/str.c')
-rw-r--r--src/str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/str.c b/src/str.c
index c7e495f..ebae70e 100644
--- a/src/str.c
+++ b/src/str.c
@@ -86,7 +86,7 @@ SPIF_TYPE(class) SPIF_CLASS_VAR(str) = SPIF_CAST(class) &s_class;
SPIF_TYPE(strclass) SPIF_STRCLASS_VAR(str) = &s_class;
/* *INDENT-ON* */
-const size_t buff_inc = 4096;
+static const size_t buff_inc = 4096;
spif_str_t
spif_str_new(void)