SyntaxFix
Write A Post
Hire A Developer
Questions
I found my issue was an improper if (leaf = NULL) {...} where it should have been if (leaf == NULL){...}
if (leaf = NULL) {...}
if (leaf == NULL){...}
Check those compiler warnings!