mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 23:27:12 +00:00
Correct format specification for printing DLword StackOffset (%tx -> %hx)
This commit is contained in:
parent
a958af1627
commit
937a003bfb
@ -77,7 +77,7 @@ static inline DLword *NativeAligned2FromStackOffset(DLword StackOffset)
|
||||
static inline LispPTR *NativeAligned4FromStackOffset(DLword StackOffset)
|
||||
{
|
||||
if (StackOffset & 1) {
|
||||
printf("Misaligned StackOffset in NativeAligned4FromStackOffset 0x%tx\n", StackOffset);
|
||||
printf("Misaligned StackOffset in NativeAligned4FromStackOffset 0x%hx\n", StackOffset);
|
||||
}
|
||||
return (void *)(Stackspace + StackOffset);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user