Fix typo bug

This commit is contained in:
Sergey Petrunya 2011-09-06 20:52:36 +04:00
parent fc6b6435b4
commit 528598c478

View File

@ -317,7 +317,7 @@ public:
inline void *nth_element(int n) inline void *nth_element(int n)
{ {
list_node *node= first; list_node *node= first;
void *data; void *data= NULL;
for (int i=0; i <= n; i++) for (int i=0; i <= n; i++)
{ {
if (node == &end_of_list) if (node == &end_of_list)