From 91ec072a82f0e0bb442997e558acfbec6b6952f2 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 19 Jun 2022 19:26:54 -0700 Subject: refactor(get): return pointer to string --- include/tatl/context/get.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/tatl/context/get.h b/include/tatl/context/get.h index 67296fd..0d26285 100644 --- a/include/tatl/context/get.h +++ b/include/tatl/context/get.h @@ -34,7 +34,7 @@ size_t *tatl_context_get_passed(struct tatl_context *); /* Get a Tatl context's total number of failing tests */ size_t *tatl_context_get_failed(struct tatl_context *); /* Get a Tatl context's tag */ -char *tatl_context_get_tag(struct tatl_context *); +char **tatl_context_get_tag(struct tatl_context *); /* Get a Tatl context's mute status */ int *tatl_context_get_mute(struct tatl_context *); /* Get a Tatl context's exit code */ -- cgit v1.2.3