I am trying to build a block where I am getting this error message
pprbc_CONTENT_icverification_act.c", line 99.2: 1506-018 (S) Operand of indirection operator must be a pointer expression
Can anyone please explain what this means?
code below:
*(WORK_migration_ind_f) =
*(migration_status_in_MI9_CIRCLE_INFO(WORK_source_circle_f));
Yes, you put a ‘*’ in front of something that isn’t a pointer.
You’d be doing yourself and everybody a favor if you posted the line of code involved.