summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/interception/interception_linux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/interception/interception_linux.h b/lib/interception/interception_linux.h
index 4c6f97a9d..5e0ec2acb 100644
--- a/lib/interception/interception_linux.h
+++ b/lib/interception/interception_linux.h
@@ -36,7 +36,7 @@ void *GetFuncAddrVer(const char *func_name, const char *ver);
#if !defined(__ANDROID__) // android does not have dlvsym
#define INTERCEPT_FUNCTION_VER(func, funcver, symver) \
- __asm__(".symver "#funcver","#func"@"#symver); \
+ __asm__(".symver "#funcver","#func"@@"#symver); \
::__interception::real_##funcver = (funcver##_f)(unsigned long) \
::__interception::GetFuncAddrVer(#func, #symver)
#endif // !defined(__ANDROID__)