Re: HELP : Value Too Large

2002-02-28 Thread John Marshall
On Wed, Feb 27, 2002 at 02:45:38PM -0800, N wrote: C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp/ccNhnO10s:30022: Error: Value of 67976 too large for field of 2 bytes at 0x3ae C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp/ccNhnO10s:30022: Error: value out of range [] My C file have 14k lines of code The only

HELP : Value Too Large

2002-02-27 Thread N
I am getting these error. C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp/ccNhnO10.s:30022: Error: Value of 67976 too large for field of 2 bytes at 0x3ae C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp/ccNhnO10.s:30022: Error: value out of range C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp/ccNhnO10.s:30039: Error: Value of 68042

Re: HELP : Value Too Large

2002-02-27 Thread Terry Dennis
This is a basic C problem and has nothing to do with Palm OS, or with the size of your application.. A 2 byte unsigned integer can hold a maximum value of 65535. Obviously, you're trying to stuff 10 pounds of a number into a 5 pound sack. Either change your definition from a 2 byte integer to