From fccfc4753386d3aacb067f5e4117ea4d266acf72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 12 Dec 2005 01:51:38 +0000 Subject: [PATCH] fix const warning Originally committed as revision 4739 to svn://svn.ffmpeg.org/ffmpeg/trunk --- cmdutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmdutils.c b/cmdutils.c index 0f3747eab6..4fae966d17 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -45,7 +45,7 @@ void show_help_options(const OptionDef *options, const char *msg, int mask, int } } -static OptionDef* find_option(const OptionDef *po, const char *name){ +static const OptionDef* find_option(const OptionDef *po, const char *name){ while (po->name != NULL) { if (!strcmp(name, po->name)) break;