Subject: Re: CVS commit: basesrc/sbin/dump
To: Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
From: None <itojun@iijlab.net>
List: source-changes
Date: 11/17/2002 14:06:39
>sbin/disklabel/printlabel.c

	can't fix this one by just replacing (int) into (unsigned long),
	since sizeof() is used to pass field width to "%*s" printf format
	string - so int has to be passed.  if we want to be really picky
	we need to declare intermediate int variable, or check if sizeof()
	is smaller than or equal to INT_MAX.

itojun