The compiler complains about line 8:
warning: file.c: set and not used: tmp

-ishwar
----
1 void freelist(lnode **list)
2 {
3    lnode *tmp;
4
5   while( *list != nil){
6     tmp = *list;
7    *list = (*list)->next;
8    tmp = freenode(tmp);
9   }
  *list = nil;
}
---

Reply via email to