Add missing breaks (#18033)

This commit is contained in:
condret 2020-12-13 23:28:49 +01:00 committed by GitHub
parent 604cf9b798
commit 113eb52266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6176,6 +6176,7 @@ static void cmd_aeg(RCore *core, int argc, char *argv[]) {
r_strbuf_free (filtered);
}
}
break;
case 'c': // "aegc"
{
RAnalEsilDFG *dfg = r_anal_esil_dfg_expr (core->anal, NULL, argv[1]);
@ -6194,6 +6195,7 @@ static void cmd_aeg(RCore *core, int argc, char *argv[]) {
}
r_anal_esil_dfg_free (dfg);
}
break;
case '?': // "aeg?"
default:
r_core_cmd_help (core, help_msg_aeg);