1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Linux fixes

This commit is contained in:
Brian Fiete 2020-12-23 12:32:24 -08:00
parent e4fa6776a8
commit 08e3f9155e
4 changed files with 7 additions and 7 deletions

View file

@ -51,7 +51,7 @@ public:
{
int size = 0;
int checkNode = mHead;
while (checkNode != NULL)
while (checkNode != -1)
{
size++;
checkNode = CH_REL_TO_ABS(checkNode)->mNext;