diff options
author | Owen Taylor <otaylor@redhat.com> | 2004-07-13 18:13:12 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2004-07-13 18:13:12 +0000 |
commit | 946b05fd720b152f6c71b3eb8ef2882d5ec44ccd (patch) | |
tree | 6d1ec885bb5891c12b75dcaed41a0826476f56ec /pango/pangoft2-render.c | |
parent | ae24204cd6a5a9528cbd6ca80314280a0b748d8f (diff) | |
download | pango-946b05fd720b152f6c71b3eb8ef2882d5ec44ccd.tar.gz |
Make static. (#147512, Morten Welinder)
Tue Jul 13 14:12:06 2004 Owen Taylor <otaylor@redhat.com>
* pango/pangoft2-render.c (compare_points): Make
static. (#147512, Morten Welinder)
Diffstat (limited to 'pango/pangoft2-render.c')
-rw-r--r-- | pango/pangoft2-render.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pangoft2-render.c b/pango/pangoft2-render.c index 73b33570..90d1ba3a 100644 --- a/pango/pangoft2-render.c +++ b/pango/pangoft2-render.c @@ -236,7 +236,7 @@ to_device (const PangoMatrix *matrix, result->y = (x * matrix->yx + y * matrix->yy) / PANGO_SCALE + matrix->y0; } -int +static int compare_points (const void *a, const void *b) { |