1diff --git a/cccc/cccc_tbl.cc b/cccc/cccc_tbl.cc
2index df98e2b..59f2572 100644
3--- a/cccc/cccc_tbl.cc
4+++ b/cccc/cccc_tbl.cc
5@@ -96,7 +96,7 @@ bool CCCC_Table<T>::remove(T* old_item_ptr)
6 typename map_t::iterator value_iterator=map_t::find(old_item_ptr->key());
7 if(value_iterator!=map_t::end())
8 {
9- erase(value_iterator);
10+ map_t::erase(value_iterator);
11 retval=true;
12 }
13 return retval;
14diff --git a/makefile b/makefile
15index 23ad004..2cca469 100644
16--- a/makefile
17+++ b/makefile
18@@ -20,5 +20,5 @@ test :
19 cd test ; make -f posix.mak
20
21 install :
22- cd install ; su root -c "make -f install.mak"
23+ cd install ; make -f install.mak
24