Skip to content

Commit c4fe009

Browse files
committed
Rename static function
1 parent bec3913 commit c4fe009

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/OVAL/probes/probe/input_handler.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#include "input_handler.h"
3939
#include "common/compat_pthread_barrier.h"
4040

41-
static void cleanup_handler(void *arg)
41+
static void pthread_attr_cleanup_handler(void *arg)
4242
{
4343
pthread_attr_destroy(arg);
4444
}
@@ -79,7 +79,7 @@ void *probe_input_handler(void *arg)
7979
return (NULL);
8080
}
8181

82-
pthread_cleanup_push(cleanup_handler, (void *)&pth_attr);
82+
pthread_cleanup_push(pthread_attr_cleanup_handler, (void *)&pth_attr);
8383

8484
switch (errno = pthread_barrier_wait(&OSCAP_GSYM(th_barrier)))
8585
{

0 commit comments

Comments
 (0)