Commit 1c873a2f authored by Chuck Lever's avatar Chuck Lever
Browse files

xdrgen: Don't generate unnecessary semicolon



The Jinja2 templates add a semicolon at the end of every function.
The C language does not require this punctuation.

Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
parent f7cb94fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
{# SPDX-License-Identifier: GPL-2.0 #}
	return true;
};
}
+1 −1
Original line number Diff line number Diff line
{# SPDX-License-Identifier: GPL-2.0 #}
	return true;
};
}
+1 −1
Original line number Diff line number Diff line
{# SPDX-License-Identifier: GPL-2.0 #}
	return true;
};
}
+1 −1
Original line number Diff line number Diff line
{# SPDX-License-Identifier: GPL-2.0 #}
	return true;
};
}
+1 −1
Original line number Diff line number Diff line
@@ -14,4 +14,4 @@ xdrgen_decode_{{ name }}(struct xdr_stream *xdr, {{ name }} *ptr)
	/* (basic) */
{% endif %}
	return xdrgen_decode_{{ type }}(xdr, ptr);
};
}
Loading