From: robertmh Date: Sun, 25 Oct 2009 17:49:27 +0000 (+0000) Subject: 2009-10-25 Robert Millan X-Git-Tag: 1.98~480 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4dea1c6f063c5af8a50a8481c0e2ce713190897d;p=thirdparty%2Fgrub.git 2009-10-25 Robert Millan * util/i386/pc/grub-setup.c (setup): Add missing parameter to grub_util_error() call. --- diff --git a/ChangeLog b/ChangeLog index 81f3ba601..123a52cb6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-10-25 Robert Millan + + * util/i386/pc/grub-setup.c (setup): Add missing parameter to + grub_util_error() call. + 2009-10-25 Robert Millan * include/grub/fs.h [GRUB_UTIL] (struct grub_fs): Add diff --git a/util/i386/pc/grub-setup.c b/util/i386/pc/grub-setup.c index 5a46e9e24..c536be0c4 100644 --- a/util/i386/pc/grub-setup.c +++ b/util/i386/pc/grub-setup.c @@ -256,7 +256,8 @@ setup (const char *dir, grub_fs_t fs; fs = grub_fs_probe (dest_dev); if (! fs) - grub_util_error ("Unable to identify a filesystem in %s; safety check can't be performed."); + grub_util_error ("Unable to identify a filesystem in %s; safety check can't be performed.", + dest_dev->disk->name); if (! fs->reserved_first_sector) grub_util_error ("%s appears to contain a %s filesystem which isn't known to "