Fix issues in the indent-example file (#17280)

This commit is contained in:
pancake 2020-07-15 10:08:28 +02:00 committed by GitHub
parent f41310a539
commit bf88eaeba4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 10 deletions

View File

@ -1,11 +1,11 @@
#include "r_core.h"
#include "r_util.h"
#include <stdio.h>
/* radare2 - LGPL - [$minyear-$maxyear] - [$author]*/
#include <r_core.h>
typedef struct r_core_rtr_host_t2 {
int proto;
char host[512];
int port;
char host[512];
char file[1024];
RSocket *fd;
} RCoreRtrHost2;
@ -14,7 +14,7 @@ static const char *help_msg_aa[] = {
"Usage:", "aa[0*?]", " # see also 'af' and 'afna'",
"aa", " ", "alias for 'af@@ sym.*;af@entry0;afva'", //;.afna @@ fcn.*'",
"aa*", "", "analyze all flags starting with sym. (af @@ sym.*)",
NULL,
NULL
};
static int cmpaddr(const void *_a, const void *_b) {
@ -22,17 +22,25 @@ static int cmpaddr(const void *_a, const void *_b) {
return a->addr - b->addr;
}
int main (int argc, char **argv) {
r_anal_esil_set_pc (core->anal->esil, fcn ? fcn->addr : core->offset);
int main(int argc, char **argv) {
r_anal_esil_set_pc (core->anal->esil, fcn? fcn->addr: core->offset);
switch (*input) {
case '\0': // "aft"
{
seek = core->offset;
r_anal_esil_set_pc (core->anal->esil, fcn ? fcn->addr : core->offset);
r_anal_esil_set_pc (core->anal->esil, fcn? fcn->addr: core->offset);
r_core_anal_type_match (core, fcn);
r_core_seek (core, seek, true);
break;
}
case '0':
{
int a = 0;
printf ("LocalA: %d\n", a);
}
break;
case 'a':
argc--;
/* fallthrough */
case 'b':
case '?':
default:
r_core_cmd_help (core, help_msg_aft);