Your line 243 has a comma too much (the last row before the ending parenthesis does not need one).
So instead of
ONOFF(PRF_FLAGGED(ch, PRF_VERBOSE)),
in this last position in the list, use
ONOFF(PRF_FLAGGED(ch, PRF_VERBOSE))
This line:
" Verbose: %-3s%s ",
should be
" Verbose: %-3s ",
or
" Verbose: %-3s \r\n",
since you only have one element more (the "on" or "off" from the ONOFF macro) - each %s or %-3s corresponds to a value in the list.
> I'm not a programmer. I'm just a teacher trying to make some young guys with ADHD have fun.
Commendable
I'll try to help you out here. I've been on a business trip the last couple of days though.