Fix doxygen 'undocumented parameter' warnings in membuf.h. --- membuf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
Fix doxygen 'undocumented parameter' warnings in membuf.h. --- membuf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ====== only in patch2: unchanged: --- src/helper/membuf.h (revision 2413) +++ src/helper/membuf.h (working copy) @@ -79,6 +79,7 @@ /** 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 @@ * 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
_______________________________________________ Openocd-development mailing list [email protected] https://lists.berlios.de/mailman/listinfo/openocd-development
