diff options
author | Pixel <> | 2001-03-21 10:58:51 +0000 |
---|---|---|
committer | Pixel <> | 2001-03-21 10:58:51 +0000 |
commit | b75cdf41d321bce00a3f7c0c980c1f6cdc6117a8 (patch) | |
tree | 6f9b4762b8c66ddae9c68b5fd69e3afa08b2b7df /lib/PLList.cc | |
parent | 9bf8629e1420fb0bc09103e747f7d9b18aa7f10d (diff) |
Bugfixes
Diffstat (limited to 'lib/PLList.cc')
-rw-r--r-- | lib/PLList.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PLList.cc b/lib/PLList.cc index 77bf2e7..b74d7d3 100644 --- a/lib/PLList.cc +++ b/lib/PLList.cc @@ -22,7 +22,7 @@ PriorityList *PLList::Union(PriorityList * P) { - if ((P->GetType()) != (((PriorityList *) this)->GetType())) { + if ((P->GetType()) != GetType()) { return GenericUnion(P); } else { CList *x, *y, *t; |