From fe0e729042492b0efa2dd74dc82fca75e5383e22 Mon Sep 17 00:00:00 2001 From: Thomas Adam Date: Mon, 24 Jun 2024 23:15:33 +0100 Subject: [PATCH] portable: macro cleanup Don't leak past a define on the rest of the line. --- include/got_compat2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/got_compat2.h b/include/got_compat2.h index 5701797b..fb06ed96 100644 --- a/include/got_compat2.h +++ b/include/got_compat2.h @@ -107,7 +107,7 @@ #define __unused __attribute__ ((__unused__)) #endif -#ifndef __bounded__ && !defined(__OpenBSD__) +#if !defined(__bounded__) && !defined(__OpenBSD__) #define __bounded__(a, b, c) #endif -- 2.11.4.GIT