From 828e657a8da05d17786fb4919f7c07ae8080c00f Mon Sep 17 00:00:00 2001 From: Yves Orton Date: Fri, 9 Sep 2022 22:28:29 +0200 Subject: [PATCH] WS Cleanup Stage #2 - remove right stars from comments --- handy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handy.h b/handy.h index 0a2fff622190..85612aa7116b 100644 --- a/handy.h +++ b/handy.h @@ -2832,8 +2832,8 @@ enum mem_log_type { #define Safefree(d) safefree(MEM_LOG_FREE((Malloc_t)(d))) #endif -/* assert that a valid ptr has been supplied - use this instead of assert(ptr) * - * as it handles cases like constant string arguments without throwing warnings * +/* assert that a valid ptr has been supplied - use this instead of assert(ptr) + * as it handles cases like constant string arguments without throwing warnings * the cast is required, as is the inequality check, to avoid warnings */ #define perl_assert_ptr(p) assert( ((void*)(p)) != 0 )