@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2024, Quinn Stephens.
|
||||
Copyright (c) 2024-2025, Quinn Stephens.
|
||||
Provided under the BSD 3-Clause license.
|
||||
|
||||
Module Name:
|
||||
@@ -33,7 +33,7 @@ print_hex (
|
||||
n = 0;
|
||||
shift = 28;
|
||||
while (n < maxlen && shift >= 0) {
|
||||
x = (num >> shift) & 0xf;
|
||||
x = (num >> shift) & 0xF;
|
||||
if (x >= 0xa) {
|
||||
*dest = 'a' + (x - 0xa);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user