Skip to content

Commit dc57f86

Browse files
committed
Fix abiversion check
1 parent 2e5ebf3 commit dc57f86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/io_frida.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2160,10 +2160,10 @@ R_API RLibStruct radare_plugin = {
21602160
.type = R_LIB_TYPE_IO,
21612161
.data = &r_io_plugin_frida,
21622162
.version = R2_VERSION,
2163-
#if R2_VERSION_NUMBER >= 50809
2163+
#if R2_VERSION_NUMBER >= 50909
21642164
.abi_version = R_LIB_CURRENT_ABI_VERSION,
21652165
#endif
2166-
#if ((R2_VERSION_MAJOR == 4 && R2_VERSION_MINOR >= 2) || R2_VERSION_MAJOR > 4)
2166+
#if R2_VERSION_NUMBER >= 40200
21672167
.pkgname = "r2frida"
21682168
#endif
21692169
};

0 commit comments

Comments
 (0)