diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-03-19 14:55:30 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-03-19 14:55:30 -0700 |
commit | 7c66d87c82ac6b06901e7cb39ed90db43bc4b053 (patch) | |
tree | 83a0f8bbb54e00ed4b340333fd3af947a32db438 /src/til_fb.h | |
parent | f08356c4d204b07847a1d550b2acda44a897f970 (diff) |
*: de-constify til_setting_t throughout
Now that til_setting_t.desc is not only a thing, but a thing that
is intended to be refreshed regularly in the course of things
like GUI interactive settings construction, it's not really
appropriate to try even act like this these are const anymore.
Diffstat (limited to 'src/til_fb.h')
-rw-r--r-- | src/til_fb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/til_fb.h b/src/til_fb.h index 186324d..f6a2972 100644 --- a/src/til_fb.h +++ b/src/til_fb.h @@ -35,7 +35,7 @@ typedef struct til_fb_t til_fb_t; /* Supply this struct to fb_new() with the appropriate context */ typedef struct til_fb_ops_t { - int (*setup)(const til_settings_t *settings, const til_setting_t **res_setting, const til_setting_desc_t **res_desc); + int (*setup)(const til_settings_t *settings, til_setting_t **res_setting, const til_setting_desc_t **res_desc); int (*init)(const til_settings_t *settings, void **res_context); void (*shutdown)(til_fb_t *fb, void *context); int (*acquire)(til_fb_t *fb, void *context, void *page); |