From 9e98702493068b28cbbbed56ff6b91e60c5e3b46 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 1 Apr 2015 22:32:34 +0200 Subject: options: fix --geometry to string conversion Fixes #1744. --- options/m_option.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/options/m_option.c b/options/m_option.c index 49d78a06d2..26ed7a2457 100644 --- a/options/m_option.c +++ b/options/m_option.c @@ -2014,13 +2014,9 @@ static char *print_geometry(const m_option_t *opt, const void *val) APPEND_PER(h, h_per); } if (gm->xy_valid) { - res = talloc_asprintf_append(res, "+"); - if (gm->x_sign) - res = talloc_asprintf_append(res, "-"); + res = talloc_asprintf_append(res, gm->x_sign ? "-" : "+"); APPEND_PER(x, x_per); - res = talloc_asprintf_append(res, "+"); - if (gm->y_sign) - res = talloc_asprintf_append(res, "-"); + res = talloc_asprintf_append(res, gm->y_sign ? "-" : "+"); APPEND_PER(y, y_per); } } -- cgit v1.2.3