summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/src/BootTextWriter.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 22:14:55 +0200
committerGitHub <noreply@github.com>2025-03-31 22:14:55 +0200
commit6849e75f2e95e88b43e2f8804abf1b862e3981cb (patch)
tree2f517be98baf5b782c8f3718dc0beb4dc460d3ce /dev/boot/src/BootTextWriter.cc
parent33a94b84237afa61d2f15fa158664137724d60a4 (diff)
parentfd288fed29eff48503abf842676085701e04c38d (diff)
Merge pull request #3 from amlel-el-mahrouss/dev
pr/general: a set of patches to be pushed into master.
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;