From 72d70b8514c6bbe3b69b42fb52354d6f97b7aec7 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Tue, 7 Jul 2020 07:50:46 -0700 Subject: [PATCH] sysprof-capture: fix typo --- src/libsysprof-capture/sysprof-macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsysprof-capture/sysprof-macros.h b/src/libsysprof-capture/sysprof-macros.h index b16c3d96..c5198241 100644 --- a/src/libsysprof-capture/sysprof-macros.h +++ b/src/libsysprof-capture/sysprof-macros.h @@ -71,7 +71,7 @@ #endif #ifdef __cpp_static_assert -# define SYSPROF_GNUC_CHECK_VERSION(expr, msg) static_assert(expr, msg) +# define SYSPROF_STATIC_ASSERT(expr, msg) static_assert(expr, msg) #elif SYSPROF_GNUC_CHECK_VERSION(4, 6) # define SYSPROF_STATIC_ASSERT(expr, msg) _Static_assert(expr, msg) #else