File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ static int pack_refs_condition(UNUSED struct gc_config *cfg)
260260 return 1 ;
261261}
262262
263- static int maintenance_task_pack_refs (MAYBE_UNUSED struct maintenance_run_opts * opts ,
263+ static int maintenance_task_pack_refs (struct maintenance_run_opts * opts ,
264264 UNUSED struct gc_config * cfg )
265265{
266266 struct child_process cmd = CHILD_PROCESS_INIT ;
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ static int is_fixed(const char *s, size_t len)
245245#ifdef USE_LIBPCRE2
246246#define GREP_PCRE2_DEBUG_MALLOC 0
247247
248- static void * pcre2_malloc (PCRE2_SIZE size , MAYBE_UNUSED void * memory_data )
248+ static void * pcre2_malloc (PCRE2_SIZE size , void * memory_data UNUSED )
249249{
250250 void * pointer = malloc (size );
251251#if GREP_PCRE2_DEBUG_MALLOC
@@ -255,7 +255,7 @@ static void *pcre2_malloc(PCRE2_SIZE size, MAYBE_UNUSED void *memory_data)
255255 return pointer ;
256256}
257257
258- static void pcre2_free (void * pointer , MAYBE_UNUSED void * memory_data )
258+ static void pcre2_free (void * pointer , void * memory_data UNUSED )
259259{
260260#if GREP_PCRE2_DEBUG_MALLOC
261261 static int count = 1 ;
You can’t perform that action at this time.
0 commit comments