+2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/kern/emu/hostdisk.c (read_device_map): Add missing noreturn
+ on show_error.
+
2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/disk.c (grub_disk_write): Add missing const qualifier.
int lineno = 0;
struct stat st;
- auto void show_error (const char *msg);
- void show_error (const char *msg)
+ auto void show_error (const char *msg)
+ __attribute__ ((noreturn));
+ void __attribute__ ((noreturn)) show_error (const char *msg)
{
grub_util_error ("%s:%d: %s", dev_map, lineno, msg);
}