summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2013-12-13 17:01:38 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2013-12-13 17:02:21 +0800
commit10dc44e0bb9f974782ed6d01a7a65634d0921aee (patch)
tree92d0b111d46d0a2fff8a95f5acfd2d3ea24bb448
parentc9d6799320b4cf941f513fed5e44c537ba1d7b6f (diff)
downloadpango-10dc44e0bb9f974782ed6d01a7a65634d0921aee.tar.gz
modules/basic/basic-win32.c: Silence a Warning
The length is an unsigned int, and it is already enforced that it must be greater or equal to 0 in this source file, so fix the type declaration.
-rw-r--r--modules/basic/basic-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/basic/basic-win32.c b/modules/basic/basic-win32.c
index 0ae78852..db92a388 100644
--- a/modules/basic/basic-win32.c
+++ b/modules/basic/basic-win32.c
@@ -714,7 +714,7 @@ static void
basic_engine_shape (PangoEngineShape *engine,
PangoFont *font,
const char *text,
- int length,
+ unsigned int length,
const PangoAnalysis *analysis,
PangoGlyphString *glyphs,
const char *paragraph_text G_GNUC_UNUSED,