mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 02:41:08 +00:00
Fix numStr split for mod
This commit is contained in:
parent
0851129765
commit
fb62095330
@ -595,8 +595,8 @@ R_API int r_num_between(RNum *num, const char *input_value) {
|
||||
}
|
||||
|
||||
R_API bool r_num_is_op(const char c) {
|
||||
return c == '/' || c == '+' || c == '-' || c == '*'
|
||||
|| c == '&' || c == '^' || c == '|';
|
||||
return c == '/' || c == '+' || c == '-' || c == '*' ||
|
||||
c == '%' || c == '&' || c == '^' || c == '|';
|
||||
}
|
||||
|
||||
//Assumed *str is parsed as an expression correctly
|
||||
|
Loading…
Reference in New Issue
Block a user