diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-08-17 13:54:29 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-08-17 13:54:29 +0100 |
commit | c3d5043378e87dce4eaa027607ff1da492f77346 (patch) | |
tree | f1a649424f3bae9d32e2e2e3680fcea72cfa4867 /include | |
parent | 5bd10cf74df979e611d69db0d5563b9d0854f884 (diff) | |
download | xine-lib-c3d5043378e87dce4eaa027607ff1da492f77346.tar.gz xine-lib-c3d5043378e87dce4eaa027607ff1da492f77346.tar.bz2 |
Fix C++ breakage introduced in cset 290f0d28f8fc.
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 58507e6f1..c25aef4b1 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -1536,8 +1536,7 @@ void xine_config_update_entry (xine_t *self, * translation of old configuration entry names */ typedef struct { - const char *old; - const char *new; + const char *old_name, *new_name; } xine_config_entry_translation_t; void xine_config_set_translation_user (const xine_config_entry_translation_t *) XINE_PROTECTED; |