mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't use hexadecimal in the EBR partition names, because 'a'..'f'
are more commonly known as BSD partition names. Discussed with: ivoras@
This commit is contained in:
parent
293d484820
commit
94fe30d0ca
1 changed files with 1 additions and 1 deletions
|
|
@ -344,7 +344,7 @@ g_part_ebr_name(struct g_part_table *table, struct g_part_entry *entry,
|
|||
char *buf, size_t bufsz)
|
||||
{
|
||||
|
||||
snprintf(buf, bufsz, "+%08x", entry->gpe_index);
|
||||
snprintf(buf, bufsz, "+%08u", entry->gpe_index);
|
||||
return (buf);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue