mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-16 19:54:54 +00:00
disk/dmraid_nvidia: Format string error in grub_error()
The grub_error() has a format string expecting two arguments, but only one provided. According to the comments in the struct grub_nv_super definition, the version field looks like a version number where major.minor is encoded as each a byte in the two-byte short. Signed-off-by: Glenn Washburn <development@efficientek.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
9f5af956fa
commit
334c0ef3d0
@ -122,7 +122,7 @@ grub_dmraid_nv_detect (grub_disk_t disk,
|
||||
if (sb.version != NV_VERSION)
|
||||
{
|
||||
grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
|
||||
"unknown version: %d.%d", sb.version);
|
||||
"unknown version: %d.%d", sb.version >> 8, sb.version & 0xFF);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user