diff options
author | Pavel Cisler <pavel@eazel.com> | 2000-04-26 09:17:10 +0000 |
---|---|---|
committer | Pavel Cisler <pce@src.gnome.org> | 2000-04-26 09:17:10 +0000 |
commit | b96e440f143aaa2f191af483e3350346f01a7a08 (patch) | |
tree | 195fba90f85b1d0a538dfb8b60f8026b6b8c479d /librsvg | |
parent | c6a934bed796d253629bef2d064a63421fbf8852 (diff) | |
download | nautilus-b96e440f143aaa2f191af483e3350346f01a7a08.tar.gz |
Make it build: Add a workaround const cast for poptGetContext that thinks
2000-04-26 Pavel Cisler <pavel@eazel.com>
* librsvg/test-rsvg.c:
Make it build:
Add a workaround const cast for poptGetContext that thinks it's using
const properly.
Diffstat (limited to 'librsvg')
-rw-r--r-- | librsvg/test-rsvg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librsvg/test-rsvg.c b/librsvg/test-rsvg.c index a7b811090..347bfd1d6 100644 --- a/librsvg/test-rsvg.c +++ b/librsvg/test-rsvg.c @@ -166,7 +166,7 @@ main (int argc, char **argv) char c; const char * const *args; - optCtx = poptGetContext ("test-rsvg", argc, argv, optionsTable, 0); + optCtx = poptGetContext ("test-rsvg", argc, (const char **)argv, optionsTable, 0); c = poptGetNextOpt (optCtx); args = poptGetArgs (optCtx); |