From 14fdf38060a73b35e6a11e6324da960853875339 Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 26 Mar 2008 12:53:22 +0000 Subject: [PATCH] char* -> const char* --- lib/devices/opengl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/devices/opengl.c b/lib/devices/opengl.c index c8efc05..076eefb 100644 --- a/lib/devices/opengl.c +++ b/lib/devices/opengl.c @@ -515,7 +515,7 @@ void opengl_drawchar(gfxdevice_t*dev, gfxfont_t*font, int glyphnr, gfxcolor_t*co -void opengl_drawlink(struct _gfxdevice*dev, gfxline_t*line, char*action) +void opengl_drawlink(struct _gfxdevice*dev, gfxline_t*line, const char*action) { dbg("link"); } @@ -525,12 +525,12 @@ void opengl_endpage(struct _gfxdevice*dev) dbg("endpage"); } -int opengl_result_save(struct _gfxresult*gfx, char*filename) +int opengl_result_save(struct _gfxresult*gfx, const char*filename) { dbg("result:save"); return 0; } -void* opengl_result_get(struct _gfxresult*gfx, char*name) +void* opengl_result_get(struct _gfxresult*gfx, const char*name) { dbg("result:get"); return 0; -- 1.7.10.4