Ethereal-dev: Re: [Ethereal-dev] New feature for ethereal

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <gharris@xxxxxxxxxxxx>
Date: Sat, 20 Jan 2001 18:24:11 -0800
On Thu, Jan 18, 2001 at 06:33:12PM -0800, David Hampton wrote:
> +#ifdef DEBUG
> +#define dprintf(...) printf(...)
> +#else
> +#define dprintf(...)
> +#endif

That's not legal C89; perhaps it's legal in the new ANSI C standard, but
using it would mean that a large number of C compilers out there
couldn't compile it.

> +    gchar *string, *text[E_CLIST_S_MAX];

That should be

	gchar *string, *text[E_CLIST_S_COLUMNS];