another c9x inline keyword woes ... Reference: /n/sources/patch/applied/marshal-inline-c9x Date: Wed Mar 8 12:21:34 CET 2006 Signed-off-by: xigh@free.fr --- /sys/src/cmd/upas/marshal/marshal.c Wed Mar 8 12:20:11 2006 +++ /sys/src/cmd/upas/marshal/marshal.c Wed Mar 8 12:20:06 2006 @@ -10,7 +10,7 @@ Attach *next; char *path; char *type; - int inline; + int _inline; Ctype *ctype; }; @@ -679,7 +679,7 @@ if(strcmp(a->type, "text/plain") != 0) Bprint(out, "Content-Type: %s\n", a->type); - if(a->inline){ + if(a->_inline){ Bprint(out, "Content-Disposition: inline\n"); } else { p = strrchr(a->path, '/'); @@ -806,7 +806,7 @@ } Attach* -mkattach(char *file, char *type, int inline) +mkattach(char *file, char *type, int _inline) { Ctype *c; Attach *a; @@ -824,7 +824,7 @@ a->path = file; a->next = nil; a->type = type; - a->inline = inline; + a->_inline = _inline; a->ctype = nil; if(type != nil){ for(c = ctype; ; c++)