diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-18 15:07:30 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-18 15:07:30 +0000 |
| commit | 3678f8df8a3d2f5fb20d07d9124c3f0b8618ca5d (patch) | |
| tree | 049afd9c94b22360496e407226831b612fad1d8f /render/font.c | |
| parent | 5fa443efc8f85a2365c1043c547ac2168a294575 (diff) | |
use const char*'s when we should be
Diffstat (limited to 'render/font.c')
| -rw-r--r-- | render/font.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/font.c b/render/font.c index c3353b67..e91925b5 100644 --- a/render/font.c +++ b/render/font.c @@ -52,7 +52,7 @@ static void measure_font(const RrInstance *inst, RrFont *f) g_free(locale); } -RrFont *RrFontOpen(const RrInstance *inst, gchar *name, gint size, +RrFont *RrFontOpen(const RrInstance *inst, const gchar *name, gint size, RrFontWeight weight, RrFontSlant slant) { RrFont *out; |
