I just did some quick tests and getting the control program to compile is just this simple change.
I believe there are still several programs, like the control program, that still need to be migrated from the 0.6 style to the 0.7 style.
return;
}
- main->setting.state.status = f_socket_connect(main->setting.socket);
+ main->setting.state.status = f_socket_connect(&main->setting.socket);
if (F_status_is_error(main->setting.state.status)) {
control_print_error(&main->program.error, macro_control_f(f_socket_connect));