aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-19 19:26:54 -0700
committerFuwn <[email protected]>2022-06-19 19:26:54 -0700
commit91ec072a82f0e0bb442997e558acfbec6b6952f2 (patch)
treee4496130497b19984314480d9c9e4fc7b82b92f1 /include
parentfix(set): free previous tag on set (diff)
downloadtatl-91ec072a82f0e0bb442997e558acfbec6b6952f2.tar.xz
tatl-91ec072a82f0e0bb442997e558acfbec6b6952f2.zip
refactor(get): return pointer to string
Diffstat (limited to 'include')
-rw-r--r--include/tatl/context/get.h2
1 files changed, 1 insertions, 1 deletions
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 */