From 7f3297dada47538ac6ae72b2f194225e6dae3118 Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Sun, 3 Sep 2017 17:44:55 +0200 Subject: [PATCH] amd64/include/u.h: fix type of jmp_buf --- arch/amd64/include/u.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/amd64/include/u.h b/arch/amd64/include/u.h index eb2bb53..58e3317 100644 --- a/arch/amd64/include/u.h +++ b/arch/amd64/include/u.h @@ -25,7 +25,7 @@ typedef long ssize_t; typedef int32_t pid_t; typedef uint32_t Rune; typedef union FPdbleword FPdbleword; -typedef uintptr jmp_buf[10]; // for registers. +typedef uintptr_t jmp_buf[10]; // for registers. typedef long off_t; typedef long ptrdiff_t;