From 384a6287108c9576ab7c13bcb8ea42074b96397c Mon Sep 17 00:00:00 2001 From: Toni Gundogdu Date: Thu, 10 Oct 2013 22:00:29 +0300 Subject: [PATCH] FIX: array initialized from parenthesized string constant (compilation) Signed-off-by: Toni Gundogdu --- src/util/xchg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/xchg.c b/src/util/xchg.c index cdf3ad0..d60ee2f 100644 --- a/src/util/xchg.c +++ b/src/util/xchg.c @@ -47,7 +47,7 @@ static const struct _media_xchg_table_s media_xchg_table[] = {0, 0, NULL} }; -static const gchar default_str[] = N_("default"); +static const gchar *default_str = N_("default"); /* Return a media property value. */ static gchar *_qm_get(quvi_media_t qm, const gint i) -- 2.11.4.GIT