Robert Millan <[EMAIL PROTECTED]> writes:
> On Fri, Nov 09, 2007 at 04:33:47PM +0100, Marco Gerards wrote:
>> Robert Millan <[EMAIL PROTECTED]> writes:
>>
>> > This should make the error much clearer when partition exceeds 2 TiB on a
>> > PC
>> > partition map (currently, all user gets is a "out
On Fri, Nov 09, 2007 at 04:33:47PM +0100, Marco Gerards wrote:
> Robert Millan <[EMAIL PROTECTED]> writes:
>
> > This should make the error much clearer when partition exceeds 2 TiB on a PC
> > partition map (currently, all user gets is a "out of partition" error which
> > is hard to figure out if
Robert Millan <[EMAIL PROTECTED]> writes:
> This should make the error much clearer when partition exceeds 2 TiB on a PC
> partition map (currently, all user gets is a "out of partition" error which
> is hard to figure out if you're unaware of the 2 TiB limit).
>
> Comments?
See below :-)
> --
On Mon, Nov 05, 2007 at 04:17:50PM +0100, Robert Millan wrote:
>
> void
> +grub_util_warn (const char *fmt, ...)
> +{
> + va_list ap;
> +
> + fprintf (stderr, "%s: warning: ", progname);
> + va_start (ap, fmt);
> + vfprintf (stderr, fmt, ap);
> + va_end (ap);
> + fputc ('\n', stderr)