aboutsummaryrefslogtreecommitdiff
path: root/test/core
diff options
context:
space:
mode:
authorRandy Palamar <randy@rnpnr.xyz>2025-01-11 23:10:24 -0700
committerRandy Palamar <randy@rnpnr.xyz>2025-01-11 23:27:47 -0700
commitabf6384cca0f80fe7dfb35a8e2281d8664d9d459 (patch)
treebc141b463e155b2170d2d70e9bb340614d76644d /test/core
parent72c26fc09af79ce217575a9b0f0d5058c336d5d7 (diff)
downloadvis-abf6384cca0f80fe7dfb35a8e2281d8664d9d459.tar.gz
vis-abf6384cca0f80fe7dfb35a8e2281d8664d9d459.tar.xz
buffer: delete pointless buffer_init function
lets not make the code harder to read for no reason
Diffstat (limited to 'test/core')
-rw-r--r--test/core/buffer-test.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/core/buffer-test.c b/test/core/buffer-test.c
index dfdb466..a102b01 100644
--- a/test/core/buffer-test.c
+++ b/test/core/buffer-test.c
@@ -15,11 +15,10 @@ static bool compare0(Buffer *buf, const char *data) {
}
int main(int argc, char *argv[]) {
- Buffer buf;
+ Buffer buf = {0};
plan_no_plan();
- buffer_init(&buf);
ok(buffer_content(&buf) == NULL && buffer_length(&buf) == 0 && buffer_capacity(&buf) == 0, "Initialization");
ok(buffer_insert(&buf, 0, "foo", 0) && buffer_content(&buf) == NULL &&
buffer_length(&buf) == 0 && buffer_capacity(&buf) == 0, "Insert zero length data");