Skip to content
Snippets Groups Projects
Commit 85b315ec authored by Adam Wujek's avatar Adam Wujek
Browse files

tools/wrs_dump_shmem_ppsi: change return value of dump_one_field_ppsi_wrs


Signed-off-by: default avatarAdam Wujek <dev_public@wujek.eu>
parent 146c2b93
Branches
Tags
No related merge requests found
......@@ -439,7 +439,7 @@ int dump_one_field_type_ppsi_wrs(int type, int size, void *p)
p = #val;\
break;
void dump_one_field_ppsi_wrs(int type, int size, void *p, int i)
int dump_one_field_ppsi_wrs(int type, int size, void *p, int i)
{
struct pp_time *t = p;
struct PortIdentity *pi = p;
......@@ -799,7 +799,12 @@ void dump_one_field_ppsi_wrs(int type, int size, void *p, int i)
print_str(char_p);
printf("\n");
break;
default:
return -1;
}
return 0;
}
extern struct dump_info shm_head [5];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment