summaryrefslogtreecommitdiff
path: root/plugins/gtkui/trkproperties.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-03-09 19:14:41 +0100
committerGravatar waker <wakeroid@gmail.com>2011-03-09 19:14:41 +0100
commit578a0936b94302967edd2455b612861e7f4d97a4 (patch)
tree90468088d9a23d223c321f7f3ac3bdc277861edc /plugins/gtkui/trkproperties.c
parent956704d035a729adf6cfe52513c19839d6df922a (diff)
compile/syntax error fix
Diffstat (limited to 'plugins/gtkui/trkproperties.c')
-rw-r--r--plugins/gtkui/trkproperties.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gtkui/trkproperties.c b/plugins/gtkui/trkproperties.c
index 037ea5a2..14d57e56 100644
--- a/plugins/gtkui/trkproperties.c
+++ b/plugins/gtkui/trkproperties.c
@@ -255,7 +255,7 @@ static const char *hc_props[] = {
void
add_field (GtkListStore *store, const char *key, const char *title, int is_prop) {
// get value to edit
- const char mult[] = _("[Multiple values] ");
+ const char *mult = _("[Multiple values] ");
char val[1000];
size_t ml = strlen (mult);
memcpy (val, mult, ml+1);