diff options
author | peter <peter@FreeBSD.org> | 2015-10-12 08:54:49 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2015-10-12 08:54:49 +0000 |
commit | c18b5d7f26f112be58bb1c4660799dea49f219ba (patch) | |
tree | 013c2e6845398e5a9ca4901dcc077769c7520e1d /subversion/include/svn_xml.h | |
parent | 91308aec6ca93cab82659cd43b3f6a83d366350b (diff) | |
download | FreeBSD-src-c18b5d7f26f112be58bb1c4660799dea49f219ba.zip FreeBSD-src-c18b5d7f26f112be58bb1c4660799dea49f219ba.tar.gz |
Vendor import of subversion-1.9.2
Diffstat (limited to 'subversion/include/svn_xml.h')
-rw-r--r-- | subversion/include/svn_xml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subversion/include/svn_xml.h b/subversion/include/svn_xml.h index 90969be..8791b14 100644 --- a/subversion/include/svn_xml.h +++ b/subversion/include/svn_xml.h @@ -312,7 +312,7 @@ svn_xml_make_header(svn_stringbuf_t **str, * If @a *str is @c NULL, set @a *str to a new stringbuf allocated * in @a pool, else append to the existing stringbuf there. * - * Take the tag's attributes from varargs, a NULL-terminated list of + * Take the tag's attributes from varargs, a SVN_VA_NULL-terminated list of * alternating <tt>char *</tt> key and <tt>char *</tt> val. Do xml-escaping * on each val. * @@ -323,7 +323,7 @@ svn_xml_make_open_tag(svn_stringbuf_t **str, apr_pool_t *pool, enum svn_xml_open_tag_style style, const char *tagname, - ...); + ...) SVN_NEEDS_SENTINEL_NULL; /** Like svn_xml_make_open_tag(), but takes a @c va_list instead of being |