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)
260
260
return 1 ;
261
261
}
262
262
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 ,
264
264
UNUSED struct gc_config * cfg )
265
265
{
266
266
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)
245
245
#ifdef USE_LIBPCRE2
246
246
#define GREP_PCRE2_DEBUG_MALLOC 0
247
247
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 )
249
249
{
250
250
void * pointer = malloc (size );
251
251
#if GREP_PCRE2_DEBUG_MALLOC
@@ -255,7 +255,7 @@ static void *pcre2_malloc(PCRE2_SIZE size, MAYBE_UNUSED void *memory_data)
255
255
return pointer ;
256
256
}
257
257
258
- static void pcre2_free (void * pointer , MAYBE_UNUSED void * memory_data )
258
+ static void pcre2_free (void * pointer , void * memory_data UNUSED )
259
259
{
260
260
#if GREP_PCRE2_DEBUG_MALLOC
261
261
static int count = 1 ;
You can’t perform that action at this time.
0 commit comments