summaryrefslogtreecommitdiffstats
path: root/vcl/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-09 17:54:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 18:32:09 +0100
commitafc34aac2c6863f01d7e750083a422b86db408ea (patch)
tree477fc890eac1fa3cd5822d97f3730f42e51a10c2 /vcl/source
parentAvoid reserved identifier (diff)
downloadcore-afc34aac2c6863f01d7e750083a422b86db408ea.tar.gz
core-afc34aac2c6863f01d7e750083a422b86db408ea.zip
Avoid reserved identifier
Change-Id: I554fde45000114dd19f117d93ef5c7a780231594
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/fontsubset/list.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/fontsubset/list.cxx b/vcl/source/fontsubset/list.cxx
index ca9653e02983..aab4bf40d2f6 100644
--- a/vcl/source/fontsubset/list.cxx
+++ b/vcl/source/fontsubset/list.cxx
@@ -31,13 +31,13 @@
#include "list.h"
/*- private data types */
-typedef struct _lnode {
- struct _lnode *next;
- struct _lnode *prev;
+struct lnode {
+ struct lnode *next;
+ struct lnode *prev;
void *value;
-} lnode;
+};
struct list_ {
lnode *head, *tail, *cptr;