I've noticed a ton of conversion errors in the modaccent sources. These sources seem to insist on casting long types to long* pointers and back again. On most x64 systems the pointer will be larger than the integer.
This can generally be fixed by replacing long with intptr_t.
I've noticed a ton of conversion errors in the
modaccentsources. These sources seem to insist on castinglongtypes tolong*pointers and back again. On most x64 systems the pointer will be larger than the integer.This can generally be fixed by replacing
longwithintptr_t.