Subject: printing u_quad_t
To: None <sommerfeld@netbsd.org>
From: None <itojun@iijlab.net>
List: source-changes
Date: 12/01/1999 09:00:47
>Modified Files:
>	basesrc/usr.sbin/cnwctl: cnwctl.c
>Log Message:
>Render LL128-safe (fixing printf formats)

	Thanks, but
		u_quad_t foo;
		printf("%llu", (long long) foo);
	looks a bit awkward for me...  shouldn't it be
		printf("%llu", (unsigned long long) foo);
	or I'm misunderstanding something?  checked usr.bin/netstat/if.c
	and it was like this.

itojun