diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-31 22:14:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-31 22:14:55 +0200 |
| commit | 6849e75f2e95e88b43e2f8804abf1b862e3981cb (patch) | |
| tree | 2f517be98baf5b782c8f3718dc0beb4dc460d3ce /dev/boot/src/BootTextWriter.cc | |
| parent | 33a94b84237afa61d2f15fa158664137724d60a4 (diff) | |
| parent | fd288fed29eff48503abf842676085701e04c38d (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.cc | 4 |
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; |
