From a3adc8f8c27fb8246bc8aa584aab4a589625a70c Mon Sep 17 00:00:00 2001 From: Robert Manea Date: Thu, 30 Jul 2009 13:54:47 +0200 Subject: [PATCH] alignment --- uzbl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/uzbl.c b/uzbl.c index facbf0c..8c3674b 100644 --- a/uzbl.c +++ b/uzbl.c @@ -318,7 +318,8 @@ expand(const char *s, guint recurse) { if( (c = g_hash_table_lookup(uzbl.comm.proto_var, ret)) ) { if(c->type == TYPE_STR && *c->ptr.s != NULL) { g_string_append(buf, (gchar *)*c->ptr.s); - } else if(c->type == TYPE_INT) { + } + else if(c->type == TYPE_INT) { g_string_append_printf(buf, "%d", *c->ptr.i); } else if(c->type == TYPE_FLOAT) { -- 1.7.9.5