comparison playtree.c @ 25489:52f6429a9ba7

typo: begining --> beginning
author diego
date Sun, 23 Dec 2007 21:22:02 +0000
parents 4d936284a5ec
children 242ff412c591
comparison
equal deleted inserted replaced
25488:74de12ad0c44 25489:52f6429a9ba7
167 else if(pt->prev) { 167 else if(pt->prev) {
168 #ifdef MP_DEBUG 168 #ifdef MP_DEBUG
169 assert(pt->prev->next == pt); 169 assert(pt->prev->next == pt);
170 #endif 170 #endif
171 pt->prev->next = NULL; 171 pt->prev->next = NULL;
172 } // Begining of list 172 } // Beginning of list
173 else if(pt->next) { 173 else if(pt->next) {
174 #ifdef MP_DEBUG 174 #ifdef MP_DEBUG
175 assert(pt->next->prev == pt); 175 assert(pt->next->prev == pt);
176 #endif 176 #endif
177 pt->next->prev = NULL; 177 pt->next->prev = NULL;