aboutsummaryrefslogtreecommitdiff
path: root/src/triplet.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/triplet.c')
-rw-r--r--src/triplet.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/triplet.c b/src/triplet.c
index bfd58e5..c214385 100644
--- a/src/triplet.c
+++ b/src/triplet.c
@@ -56,3 +56,3 @@ hash_triplet_free (void *data)
free (tp->tmp);
- obstack_free (&tp->obstk, NULL);
+ txtacc_free (tp->acc);
@@ -73,4 +73,4 @@ triplet_strdup (struct file_triplet *tp, const char *str)
size_t len = strlen (str);
- obstack_grow (&tp->obstk, str, len + 1);
- return obstack_finish (&tp->obstk);
+ txtacc_grow (tp->acc, str, len + 1);
+ return txtacc_finish (tp->acc);
}
@@ -107,3 +107,3 @@ register_file (struct file_info *finfo, const struct spool *spool)
ret->spool = spool;
- obstack_init (&ret->obstk);
+ ret->acc = txtacc_create ();
}

Return to:

Send suggestions and report system problems to the System administrator.