Commit 372093f5 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Minor flexelinting

parent 8b20339d
......@@ -263,7 +263,7 @@ VTE_format(const struct vte *vte, VTE_format_f *func, void *priv)
if (*p == '\v') {
if (p - 1 > q) { /* exclude previous separator */
VTE_FORMAT(func, priv, "%.*s%s",
(int)(p - 1 - q), q, sep);
(int)((p - 1) - q), q, sep);
}
q = ++p;
just_left = 1;
......
......@@ -456,7 +456,7 @@ char *vcc_Dup_be(const char *b, const char *e);
int vcc_Has_vcl_prefix(const char *b);
/* vcc_var.c */
void vcc_Header_Fh(struct vcc *, struct symbol *);
void vcc_Header_Fh(const struct vcc *, const struct symbol *);
sym_wildcard_t vcc_Var_Wildcard;
/* vcc_vmod.c */
......
......@@ -41,7 +41,7 @@
/*--------------------------------------------------------------------*/
void
vcc_Header_Fh(struct vcc *tl, struct symbol *sym)
vcc_Header_Fh(const struct vcc *tl, const struct symbol *sym)
{
const struct symbol *parent;
......
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