Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jan 14, 2019
1 parent 80f8526 commit ea92c06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libr/core/cmd_search.c
Original file line number Diff line number Diff line change
Expand Up @@ -1884,10 +1884,10 @@ static bool do_anal_search(RCore *core, struct search_parameters *param, const c
case 'q':
mode = *input;
break;
case 'q':
case 'l': // "/alt" "/alf"
switch (type) {
case 't':
case 'f':
case 't': // "/alt"
case 'f': // "/alf"
for (i = 0; i < 64; i++) {
const char *str = type == 'f'
? r_anal_op_family_to_string (i)
Expand All @@ -1901,7 +1901,7 @@ static bool do_anal_search(RCore *core, struct search_parameters *param, const c
r_cons_println (str);
}
break;
case 's':
case 's': // "als"
r_core_cmd0 (core, "asl");
break;
case 0:
Expand Down

0 comments on commit ea92c06

Please sign in to comment.