mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-08-05 15:48:43 +00:00
util: fix copy/paste error in intrusive lists
This commit is contained in:
parent
f534d3498e
commit
13af645f87
1 changed files with 2 additions and 2 deletions
|
@ -103,11 +103,11 @@ namespace sts::util {
|
||||||
}
|
}
|
||||||
|
|
||||||
IntrusiveListNode *GetNext() {
|
IntrusiveListNode *GetNext() {
|
||||||
return this->prev;
|
return this->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
const IntrusiveListNode *GetNext() const {
|
const IntrusiveListNode *GetNext() const {
|
||||||
return this->prev;
|
return this->next;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue