diff options
| author | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-04 18:41:12 +0300 |
|---|---|---|
| committer | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-04 18:41:12 +0300 |
| commit | 8bdc643dc2fbfcffe0649bfb2f6564f349493b55 (patch) | |
| tree | 55fb637c587999ee922297cd17f600a766e72b89 | |
| parent | ca2a6e9e70d4468290ad26fcf0924e4a69ecdf28 (diff) | |
Remove const qualifiers because these interfere with libtk compilation
| -rw-r--r-- | libtk/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtk/utils.c b/libtk/utils.c index 28b3318b..f369aec4 100644 --- a/libtk/utils.c +++ b/libtk/utils.c @@ -1598,7 +1598,7 @@ tkdirty(Tk *tk) } static int -qcmdcmp(const void *a, const void *b) +qcmdcmp(void *a, void *b) { return strcmp(((TkCmdtab*)a)->name, ((TkCmdtab*)b)->name); } |
