The `kind` field in `htmllabel_t` is a `char`, so this code was causing
conversion compiler warnings when trying to assign an `int` to it. We can avoid
this ambiguity by consistently using the same type everywhere.
/* setCell:
* Set cell body and type and attach to row
*/
-static void setCell (htmlcell_t* cp, void* obj, int kind)
-{
+static void setCell(htmlcell_t *cp, void *obj, char kind) {
pitem* sp = NEW(pitem);
htmltbl_t* tbl = HTMLstate.tblstack;
pitem* rp = dtlast (tbl->u.p.rows);
/* mkLabel:
* Create label, given body and type.
*/
-static htmllabel_t* mkLabel (void* obj, int kind)
-{
+static htmllabel_t *mkLabel(void *obj, char kind) {
htmllabel_t* lp = NEW(htmllabel_t);
lp->kind = kind;