Skip to content

Commit 4f83b8d

Browse files
committed
fixed need_far_jump being exposed
1 parent 0f49c12 commit 4f83b8d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
#define MAX_HEAD_SIZE 35
6767
#endif
6868

69-
inline bool need_far_jump(const void *src, const void *dst) {
69+
static inline bool need_far_jump(const void *src, const void *dst) {
7070
long long distance = (long long)dst - (long long)src;
7171
if (distance < 0) distance = -distance;
7272
#ifdef __aarch64__

0 commit comments

Comments
 (0)