From: <le...@us...> - 2004-03-05 18:52:13
|
Update of /cvsroot/rtk/rtk/src/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31215 Modified Files: SList.cpp Log Message: Small changes. Index: SList.cpp =================================================================== RCS file: /cvsroot/rtk/rtk/src/core/SList.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** SList.cpp 2 Feb 2004 13:35:26 -0000 1.6 --- SList.cpp 5 Mar 2004 18:30:04 -0000 1.7 *************** *** 83,87 **** if(_tail) _tail->next = new_element; ! new_element->next = 0; _tail = new_element; --- 83,87 ---- if(_tail) _tail->next = new_element; ! new_element->next = 0; _tail = new_element; *************** *** 185,189 **** cnt++; if(!all) break; ! } else prev = node; node = next; --- 185,189 ---- cnt++; if(!all) break; ! } else prev = node; node = next; |