Subject: Re: Patch for snprintf/vsnprintf bugs.
To: Krister Walfridsson <cato@df.lth.se>
From: Jason R Thorpe <thorpej@wasabisystems.com>
List: tech-userlevel
Date: 01/04/2003 13:41:44
On Sat, Jan 04, 2003 at 09:53:14PM +0100, Krister Walfridsson wrote:

 > OK to commit?

Other than a style nit:

	if (..)
	{
		...
	}
	else
	{
		...
	}

should be:

	if (..) {
		...
	} else {
		...
	}

this looks good to me.

-- 
        -- Jason R. Thorpe <thorpej@wasabisystems.com>