mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-02-04 00:54:33 +00:00
Fix bug in string formatting in EVPD prettyfier.
This commit is contained in:
@@ -597,10 +597,9 @@ public static partial class EVPD
|
||||
}
|
||||
else
|
||||
{
|
||||
sb
|
||||
.AppendFormat("\t[slateblue1]{ Localization.Relative_target_port_identifier_0}[/]",
|
||||
$"[teal]{(descriptor.Binary[2] << 8) + descriptor.Binary[3]}[/]")
|
||||
.AppendLine();
|
||||
sb.AppendFormat($"\t[slateblue1]{Localization.Relative_target_port_identifier_0}[/]",
|
||||
$"[teal]{(descriptor.Binary[2] << 8) + descriptor.Binary[3]}[/]")
|
||||
.AppendLine();
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user