From 1b03d5cb45f9c43b6456215882470a034a2e73c6 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 12 Jul 2010 14:24:16 -0400 Subject: [PATCH] [St] fix a bug noticed by gcc -O3 https://bugzilla.gnome.org/show_bug.cgi?id=623295 --- src/st/st-box-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st/st-box-layout.c b/src/st/st-box-layout.c index 89fd91b80..16c5b387d 100644 --- a/src/st/st-box-layout.c +++ b/src/st/st-box-layout.c @@ -177,7 +177,7 @@ scrollable_get_adjustments (StScrollable *scrollable, priv = (ST_BOX_LAYOUT (scrollable))->priv; - if (priv->hadjustment) + if (hadjustment) *hadjustment = priv->hadjustment; if (vadjustment)