summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Estrugo <ramiro@src.gnome.org>2001-04-29 21:13:26 +0000
committerRamiro Estrugo <ramiro@src.gnome.org>2001-04-29 21:13:26 +0000
commita323ba537cba9e907d53f149c8e07bd2e56f18af (patch)
tree82e1754e0ce8ea3e61c29b87c7f564ddbe56df76
parent3fc4f9a35f3086a03428edbe3857be02ad82d704 (diff)
downloadyelp-a323ba537cba9e907d53f149c8e07bd2e56f18af.tar.gz
Remove the cast, its not needed and it breaks the build. You probably needNAUTILUS_1_0_4NAUTILUS_1_0_3
* components/help/converters/gnome-info2html2/main.c: (main): Remove the cast, its not needed and it breaks the build. You probably need a newer popt if your build breaks without the cast.
-rw-r--r--src/info2html/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/info2html/main.c b/src/info2html/main.c
index 1ae069e1..c61bd7b6 100644
--- a/src/info2html/main.c
+++ b/src/info2html/main.c
@@ -64,7 +64,7 @@ main(int argc, char **argv)
if (!be_quiet)
printf("info2html Version %s\n",INFO2HTML_VERSION);
- ctx = poptGetContext("gnome-info2html2", argc, (const char **)argv, options, 0);
+ ctx = poptGetContext("gnome-info2html2", argc, argv, options, 0);
while(poptGetNextOpt(ctx) >= 0)
/**/ ;