summaryrefslogtreecommitdiff
path: root/pango/pangofc-decoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pangofc-decoder.c')
-rw-r--r--pango/pangofc-decoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/pangofc-decoder.c b/pango/pangofc-decoder.c
index a2989528..1f985265 100644
--- a/pango/pangofc-decoder.c
+++ b/pango/pangofc-decoder.c
@@ -70,7 +70,7 @@ pango_fc_decoder_get_charset (PangoFcDecoder *decoder,
* glyph is most convenient for it. (Usually whatever glyph is directly
* in the fonts character map table.)
*
- * Return value: the glyph index, or %PANGO_GLYPH_NULL if the glyph isn't
+ * Return value: the glyph index, or 0 if the glyph isn't
* covered by the font.
*
* Since: 1.6
@@ -80,7 +80,7 @@ pango_fc_decoder_get_glyph (PangoFcDecoder *decoder,
PangoFcFont *fcfont,
guint32 wc)
{
- g_return_val_if_fail (PANGO_IS_FC_DECODER (decoder), PANGO_GLYPH_NULL);
+ g_return_val_if_fail (PANGO_IS_FC_DECODER (decoder), 0);
return PANGO_FC_DECODER_GET_CLASS (decoder)->get_glyph (decoder, fcfont, wc);
}