From 5188156587cc388b86962fb43815a303448aeb64 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 8 Apr 2017 00:58:58 -0400 Subject: Avoid a compiler warning The compiler complains that rightmost_space may be used uninitialized. And it may be right. --- pango/pango-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pango/pango-layout.c') diff --git a/pango/pango-layout.c b/pango/pango-layout.c index b9351bd8..761feafa 100644 --- a/pango/pango-layout.c +++ b/pango/pango-layout.c @@ -5194,7 +5194,7 @@ justify_clusters (PangoLayoutLine *line, { gboolean leftedge = TRUE; PangoGlyphString *rightmost_glyphs = NULL; - int rightmost_space; + int rightmost_space = 0; int residual = 0; added_so_far = 0; -- cgit v1.2.1