fftools/cmdutils: constify string

Fixes:
warning: initializing 'char *' with an expression of type 'const char *'
discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
Kacper Michajłow
2026-02-28 03:15:28 +01:00
parent 743df5ded9
commit 4e32fb4c2a

View File

@@ -275,7 +275,7 @@ static int write_option(void *optctx, const OptionDef *po, const char *opt,
}
if (po->flags & OPT_FLAG_SPEC) {
char *p = strchr(opt, ':');
const char *p = strchr(opt, ':');
char *str;
sol = dst;