[vox-tech] gcc warning question

Peter Jay Salzman vox-tech@lists.lugod.org
Tue, 15 Oct 2002 13:13:09 -0700


hi sam,

i wasn't really worrying about fitting numbers into correct datatypes as
much as i was the warning that my "unsigned int" was getting truncated
to an unsigned int.

seems like an odd thing for gcc to say.

pete

begin Samuel Merritt <spam@andcheese.org> 
> On Tue, Oct 15, 2002 at 11:55:12AM -0700, Peter Jay Salzman wrote:
> > gcc warns:
> > 
> >    % .!gcc -W -Wall test.c
> >    test.c: In function `main':
> >    test.c:6: warning: large integer implicitly truncated to unsigned type
> > 
> > the variable was declared as an unsigned and the rvalue has the unsigned
> > suffix.  what's wrong with this code?   why is gcc complaining? 
> 
> I think you need to use an unsigned long. It looks like sizeof(unsigned
> int) = 4, and 99999999999 > 2^32. 
>  
> > pete
> > 
> > 
> > 
> > #include <stdio.h>
> > 
> > int main(void)
> > {
> > 	unsigned int size = 99999999999u;
> > 
> > 	printf("size is %u.\n", size);
> > 
> > 	return 0;
> > }



-- 
Fingerprint: B9F1 6CF3 47C4 7CD8 D33E 70A9 A3B9 1945 67EA 951D