mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Kernel: Fix incorrect format template
This commit is contained in:
parent
b4272d731f
commit
eaad94751c
Notes:
sideshowbarker
2024-07-18 08:36:30 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/eaad94751c2 Pull-request: https://github.com/SerenityOS/serenity/pull/8925 Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 1 deletions
|
@ -1572,7 +1572,7 @@ void RTL8168NetworkAdapter::identify_chip_version()
|
|||
}
|
||||
break;
|
||||
default:
|
||||
dbgln_if(RTL8168_DEBUG, "Unable to determine device version: {#04x}", registers);
|
||||
dbgln_if(RTL8168_DEBUG, "Unable to determine device version: {:#04x}", registers);
|
||||
m_version = ChipVersion::Unknown;
|
||||
m_version_uncertain = true;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue