You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First I wanted to be sure that I am not missing some tweak or setting, since asn_INTEGER2ulong is there, I hoped somebody would give a quick solution...
... Like "use -fwide-types" :-)
(though that would break a lot of my existing code)
Compiler is rightly complaining about 18446744073709551615L used in this constraint:
==>
Instead, the value should be
unsigned long
, parsed withasn_INTEGER2ulong
, and the number written withUL
suffix.Note: 18446744073709551615 == max 64-bits value =
ULONG_MAX
The text was updated successfully, but these errors were encountered: