[4485] Change type of variables to overcome compiler objections
One compiler was objecting to placing the address of a size_t variable into a variable declared as "unsigned long*". Changing the declaration from "size_t" to "unsigned long" fixes the problem.
Please register or sign in to comment