summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/helper/membuf.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/helper/membuf.h b/src/helper/membuf.h
index a6ed5041..01bb845a 100644
--- a/src/helper/membuf.h
+++ b/src/helper/membuf.h
@@ -79,6 +79,7 @@ int membuf_vsprintf(struct membuf *pBuf , const char *fmt, va_list ap);
/** Tokenize lines using strtok()
* @param pBuf - buffer to tokenize
* @param delim - delimiter parameter for strtok_r()
+ * @param pSave - pointer to string context for tokenization
*
* Identical to "strtok()" - pass "pBuff = NULL" on second call
*
@@ -112,7 +113,7 @@ struct membuf *membuf_append(struct membuf *pBuf, const void *pData, size_t len)
* Modified symantics of "strcat()". On memory allocation failure
* returns NULL. On success, returns pointer to orginal membuf.
*/
-struct membuf *membuf_strcat(struct membuf *pBuf, const char *s);
+struct membuf *membuf_strcat(struct membuf *pBuf, const char *str);
#endif