summaryrefslogtreecommitdiffstats
path: root/kpat/freecell-solver/fcs_cl.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-04-14 21:59:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-04-15 09:19:34 +0900
commitd45d96cd06c742aec04ef51b17bc8b92c2439302 (patch)
tree6d287304f6e11361e9fea3b2d6961a2252a361a5 /kpat/freecell-solver/fcs_cl.h
parent7494cc4407746240f2c06d7a14d6567492d5f693 (diff)
downloadtdegames-d45d96cd06c742aec04ef51b17bc8b92c2439302.tar.gz
tdegames-d45d96cd06c742aec04ef51b17bc8b92c2439302.zip
Fix FTBFS caused by invalid cast. This resolves issue #38.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpat/freecell-solver/fcs_cl.h')
-rw-r--r--kpat/freecell-solver/fcs_cl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kpat/freecell-solver/fcs_cl.h b/kpat/freecell-solver/fcs_cl.h
index e739c98e..6dafaec6 100644
--- a/kpat/freecell-solver/fcs_cl.h
+++ b/kpat/freecell-solver/fcs_cl.h
@@ -12,7 +12,7 @@ typedef int (*freecell_solver_user_cmd_line_known_commands_callback_t)
(
void * instance,
int argc,
- char * argv[],
+ const char * argv[],
int arg_index,
int * num_to_skip,
int * ret,