summaryrefslogtreecommitdiff
path: root/xml2cmp
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-08-11 09:58:30 +0100
committerNoel Power <noel.power@novell.com>2011-08-11 09:58:30 +0100
commitc2a634416ba8f385c25c16cc52aeae6f68cab9db (patch)
tree116687f511d495e8cf458566eb7ca88feb711a50 /xml2cmp
parentfa53c328cb028f61f8bff25d1960a94ad39f51ca (diff)
fix more -fpermissive compile errors from trunck gcc
Diffstat (limited to 'xml2cmp')
-rw-r--r--xml2cmp/source/support/list.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml2cmp/source/support/list.hxx b/xml2cmp/source/support/list.hxx
index 66888ee6bfbc..80b9e5e647ea 100644
--- a/xml2cmp/source/support/list.hxx
+++ b/xml2cmp/source/support/list.hxx
@@ -226,7 +226,7 @@ DynamicList<XY>::insert(unsigned pos, XY * const & elem_)
if ( pos > this->len )
return;
- checkSize(this->len+2);
+ this->checkSize(this->len+2);
memmove(this->inhalt[pos+1], this->inhalt[pos], (this->len-pos) * sizeof(XY*) );
this->inhalt[pos] = elem_;
this->len++;