Remove superfluous backslashes (nothing to escape here)

This commit is contained in:
tbeu 2017-10-24 20:14:23 +02:00
parent 8638ac33ae
commit 4fb0159385
2 changed files with 2 additions and 2 deletions

View File

@ -1788,7 +1788,7 @@ cellspacing="0" cellpadding="4">
<dd>
<p>
Writes the tpl to a memory buffer. The following two arguments must be a
<tt>void\*\*</tt> and a <tt>size_t*</tt>. The function will allocate a buffer and store
<tt>void**</tt> and a <tt>size_t*</tt>. The function will allocate a buffer and store
its address and length into these locations. The caller is responsible to
<tt>free()</tt> the buffer when done using it.
</p>

View File

@ -785,7 +785,7 @@ The first argument is the `tpl_node*` and the second is one of these constants:
if non-blocking and the contents cannot be written immediately.
`TPL_MEM`::
Writes the tpl to a memory buffer. The following two arguments must be a
`void\*\*` and a `size_t*`. The function will allocate a buffer and store
`void**` and a `size_t*`. The function will allocate a buffer and store
its address and length into these locations. The caller is responsible to
`free()` the buffer when done using it.
`TPL_MEM|TPL_PREALLOCD`::