From 79efea7ad5ffa571d27321243e25c372ab4303b2 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 13 Apr 2020 11:47:36 -0400 Subject: Rename atom rendering functions Again, probably. --- concat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'concat.c') diff --git a/concat.c b/concat.c index 07d1f6f..5e8be3d 100644 --- a/concat.c +++ b/concat.c @@ -145,7 +145,7 @@ void concatData(struct List threads, struct List items) { FILE *file = fopen(dst, "w"); if (!file) err(EX_CANTCREAT, "%s", dst); - error = atomFeedHead(file, &envelope); + error = atomFeedOpen(file, &envelope); if (error) err(EX_IOERR, "%s", dst); for (size_t i = 0; i < flat.len; ++i) { @@ -154,7 +154,7 @@ void concatData(struct List threads, struct List items) { if (error) err(EX_IOERR, "%s", dst); } - error = atomFeedTail(file) || fclose(file); + error = atomFeedClose(file) || fclose(file); if (error) err(EX_IOERR, "%s", dst); } -- cgit 1.4.1