Get rid of capacity argument to ds_init() and update all callers.
[pspp-builds.git] / src / libpspp / str.h
index aa93fb2b7b751bd0600e151d51f9b2ca8bfa6ba9..379762fc858e5db6171ace675007055b12b009e1 100644 (file)
@@ -117,7 +117,7 @@ struct string
 #define DS_INITIALIZER {NULL, 0, 0}
 
 /* Constructors, destructors. */
-void ds_init (struct string *, size_t);
+void ds_init (struct string *);
 void ds_init_substring (struct string *,
                         const struct string *src, size_t start, size_t cnt);
 void ds_create (struct string *, const char *);