mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-10 00:02:39 +00:00
Fix 'bad C' in ioplug->debug
This commit is contained in:
parent
dcaf81b0f7
commit
8ece70cda3
@ -296,7 +296,7 @@ RIOPlugin r_io_plugin_debug = {
|
||||
struct r_io_plugin_t r_io_plugin_debug = {
|
||||
.name = "debug",
|
||||
.desc = "Debug a program or pid. (NOT SUPPORTED FOR THIS PLATFORM)",
|
||||
.debug = (void *)1,
|
||||
.debug = (void *)(size_t)1,
|
||||
};
|
||||
#endif // DEBUGGER
|
||||
|
||||
|
@ -122,6 +122,6 @@ RIOPlugin r_io_plugin_gdb = {
|
||||
.plugin_open = __plugin_open,
|
||||
.lseek = __lseek,
|
||||
.system = __system,
|
||||
.debug = (void *)1,
|
||||
.debug = (void *)(size_t)1,
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user