Commit eea97dbe authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Prototype adjustment for last commit

parent b3690c63
...@@ -322,7 +322,7 @@ EmitFiniFunc(const struct vcc *tl) ...@@ -322,7 +322,7 @@ EmitFiniFunc(const struct vcc *tl)
{ {
unsigned u; unsigned u;
Fc(tl, 0, "\nstatic int\nVGC_Fini(struct cli *cli)\n{\n\n"); Fc(tl, 0, "\nstatic void\nVGC_Fini(struct cli *cli)\n{\n\n");
/* /*
* We do this here, so we are sure they happen before any * We do this here, so we are sure they happen before any
...@@ -333,7 +333,6 @@ EmitFiniFunc(const struct vcc *tl) ...@@ -333,7 +333,6 @@ EmitFiniFunc(const struct vcc *tl)
AZ(VSB_finish(tl->ff)); AZ(VSB_finish(tl->ff));
VSB_cat(tl->fc, VSB_data(tl->ff)); VSB_cat(tl->fc, VSB_data(tl->ff));
Fc(tl, 0, "\treturn(0);\n");
Fc(tl, 0, "}\n"); Fc(tl, 0, "}\n");
} }
......
Markdown is supported
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