diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 17:54:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:09 +0100 |
commit | afc34aac2c6863f01d7e750083a422b86db408ea (patch) | |
tree | 477fc890eac1fa3cd5822d97f3730f42e51a10c2 /vcl | |
parent | af6fdd68240c3b05c3cc16b422839bd6dc14175a (diff) |
Avoid reserved identifier
Change-Id: I554fde45000114dd19f117d93ef5c7a780231594
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/fontsubset/list.cxx | 8 |
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; |