Subject: Re: 64bit issues
To: None <port-alpha@netbsd.org>
From: Christos Zoulas <christos@zoulas.com>
List: port-alpha
Date: 12/23/1999 03:20:47
In article <199912220414.WAA27931@guild.plethora.net>,
Peter Seebach <seebs@plethora.net> wrote:
>
>The canonical way to printf a size_t:
>	%ld	...	(long) foo
>ugly, but it will work on "probably everything you care about".
>

No, you really want:
	%lu	(unsigned long) foo

christos