summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-30 05:34:36 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-30 05:34:36 +0000
commit1d61e34e1e24486e45851ad97f7d8c6f1ca14eb6 (patch)
tree6249bc347db102be8afea3c8ec5ea9fecda804a7 /src
parent48b3b3afba52924bbb0373a4577e27058774b6f5 (diff)
downloadopenocd+libswd-1d61e34e1e24486e45851ad97f7d8c6f1ca14eb6.tar.gz
openocd+libswd-1d61e34e1e24486e45851ad97f7d8c6f1ca14eb6.tar.bz2
openocd+libswd-1d61e34e1e24486e45851ad97f7d8c6f1ca14eb6.tar.xz
openocd+libswd-1d61e34e1e24486e45851ad97f7d8c6f1ca14eb6.zip
Fix doxygen 'undocumented parameter' warnings in membuf.h.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2426 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-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