diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-05-03 15:41:34 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-05-03 15:41:34 +0200 |
| commit | 3f4aaa323686e48cf52ba6771f24f6f3ca01b92c (patch) | |
| tree | 90d484b0cd0f7e4db5e11a4261361a2ad0e8cfda /include/uconfig.h | |
| parent | 46cbb3b4393d690ff023d4339ac3268fba6774d5 (diff) | |
uconfig_get no longer return a constant string
Diffstat (limited to 'include/uconfig.h')
| -rw-r--r-- | include/uconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uconfig.h b/include/uconfig.h index 415bc31..51582e9 100644 --- a/include/uconfig.h +++ b/include/uconfig.h @@ -14,7 +14,7 @@ struct uconfig_s; struct uconfig_s *uconfig_new(const char *file); /* Get the value associated to KEY, or NULL if none is found. */ -const char *uconfig_get(const struct uconfig_s *uconfig, const char *key); +char *uconfig_get(const struct uconfig_s *uconfig, const char *key); /* Destroy the given Uconfig handle. */ void uconfig_destroy(struct uconfig_s *uconfig); |
