Skip to content

Commit 6e9ac92

Browse files
committed
[mod] hidden visibility of symbol "dump"
1 parent 98f6a6e commit 6e9ac92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "common.h"
22

33
#if (defined TRACE || defined CFRG_TEST_VEC)
4-
void dump(const uint8_t *p, const size_t len, const char* msg, ...) {
4+
void __attribute__((visibility("hidden"))) dump(const uint8_t *p, const size_t len, const char* msg, ...) {
55
va_list args;
66
va_start(args, msg);
77
vfprintf(stderr,msg, args);

0 commit comments

Comments
 (0)