aboutsummaryrefslogtreecommitdiffstats
path: root/games/vavoom/files/patch-source_sys__sdl.cpp
blob: cb5803e0315838ffb5cfd19bff7c3236fb6143c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- source/sys_sdl.cpp.orig Mon Dec 12 14:39:33 2005
+++ source/sys_sdl.cpp  Mon Dec 12 14:39:52 2005
@@ -380,7 +380,7 @@
            char *out = buf;
            size_t inbytes = 1;
            size_t outbytes = 8;
-           iconv(cd, &in, &inbytes, &out, &outbytes);
+           iconv(cd, (const char**)&in, &inbytes, &out, &outbytes);
            fwrite(buf, 1, out - buf, stdout);
        }