mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-14 11:54:43 +00:00
Correct format specification for printing DLword StackOffset (%tx -> %hx)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user