An empty port in a non-ANSI module/program/interface declaration is likely not intended and should be removed.
module fly(a,,b); input a; output b; ... endmodule
module fly(a, b); input a; output b; ... endmodule