summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/src/BootTextWriter.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 19:06:39 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 19:06:39 +0200
commite3e25ba6822ec8545d8fad5d1d30115af874525b (patch)
treedf2ad86ec3fa915f0d52f5d3b66c8c14dca805af /dev/boot/src/BootTextWriter.cc
parent4edacbb20e2dd8c0e71cfbfc6712654c36f9c4e5 (diff)
boot/efi: a set of important patches regarding efi bootz.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/boot/src/BootTextWriter.cc')
-rw-r--r--dev/boot/src/BootTextWriter.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/boot/src/BootTextWriter.cc b/dev/boot/src/BootTextWriter.cc
index bc93b133..0b132f83 100644
--- a/dev/boot/src/BootTextWriter.cc
+++ b/dev/boot/src/BootTextWriter.cc
@@ -131,7 +131,7 @@ Boot::BootTextWriter& Boot::BootTextWriter::WriteCharacter(CharacterTypeUTF16 c)
return *this;
}
-Boot::BootTextWriter& Boot::BootTextWriter::Write(const Long& x)
+Boot::BootTextWriter& Boot::BootTextWriter::Write(const UInt64& x)
{
#ifdef __DEBUG__
this->_Write(x);
@@ -141,7 +141,7 @@ Boot::BootTextWriter& Boot::BootTextWriter::Write(const Long& x)
return *this;
}
-Boot::BootTextWriter& Boot::BootTextWriter::_Write(const Long& x)
+Boot::BootTextWriter& Boot::BootTextWriter::_Write(const UInt64& x)
{
#ifdef __DEBUG__
UInt64 y = (x > 0 ? x : -x) / 16;