LB Booster
General >> General Board >> Encryption http://lbb.conforums.com/index.cgi?board=general&action=display&num=1520717936 Encryption
Post by PabloSl on Mar 10th, 2018, 8:38pm
This is caused by have two structs with the same name but different data types. Change one of the names and it should work.
Indeed. Two such similar structures, with the same name and the same member name, but one being unsigned and the other signed, seems unlikely to be deliberate:
Code:
struct a, pDataLen as ulong
struct a, pDataLen as long
The original author should probably be informed of the anomaly in case it is a mistake.