summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-09-23 12:20:44 +0000
committerMatthias Clasen <mclasen@redhat.com>2019-09-23 12:20:44 +0000
commit050ebae3a0340e37187319273b5ab443cbe1f0fd (patch)
treef4c3a9441254b79b1de126c5a928f0c205a88a39
parent7dfa511509fcf34f6756963eddc4babf0da933e1 (diff)
parent298f25165ff12edaa915ef9758964389f96c2502 (diff)
downloadpango-050ebae3a0340e37187319273b5ab443cbe1f0fd.tar.gz
Merge branch 'pangowin32tobmp-typo' into 'master'
pangowin32tobmp: Fix typo. See merge request GNOME/pango!147
-rw-r--r--examples/pangowin32tobmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/pangowin32tobmp.c b/examples/pangowin32tobmp.c
index 6f93468b..a71017e7 100644
--- a/examples/pangowin32tobmp.c
+++ b/examples/pangowin32tobmp.c
@@ -55,7 +55,8 @@ compare_font_family (gconstpointer a,
{
PangoFontFamily **aa = (PangoFontFamily **)a;
PangoFontFamily **bb = (PangoFontFamily **)b;
- return strcmp (pango_font_family_get_name (*aa, *bb);
+ return strcmp (pango_font_family_get_name (*aa),
+ pango_font_family_get_name (*bb));
}
int main (int argc, char **argv)