rtasm: fix printf specifier for ptrdiff_t

In practice it's a small number, but new gcc versions complain.

Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Acked-by: Emma Anholt <emma@anholt.net>
Tested-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14922>
This commit is contained in:
Ilia Mirkin 2022-02-07 23:36:01 -05:00 committed by Marge Bot
parent 7d1727079c
commit 55b735c51a
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ void x86_print_reg( struct x86_reg reg )
foo++; \
if (*foo) \
foo++; \
debug_printf( "\n%4x %14s ", p->csr - p->store, foo ); \
debug_printf( "\n%4tx %14s ", p->csr - p->store, foo ); \
} while (0)
#define DUMP_I( I ) do { \