(lnd_count): Remove unused local variable.

This commit is contained in:
Markus Armbruster 2007-11-15 19:43:41 +00:00
parent 0e275b8507
commit b843490799

View file

@ -736,12 +736,10 @@ lnd_count(struct emp_qelem *list)
{ {
struct emp_qelem *qp; struct emp_qelem *qp;
struct emp_qelem *next; struct emp_qelem *next;
struct ulist *llp;
int count = 0; int count = 0;
for (qp = list->q_back; qp != list; qp = next) { for (qp = list->q_back; qp != list; qp = next) {
next = qp->q_back; next = qp->q_back;
llp = (struct ulist *)qp;
++count; ++count;
} }
return count; return count;