diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-24 09:37:56 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-24 09:37:56 +0000 |
commit | dbb0f31abbb28f65951690613844583a93b1a5e1 (patch) | |
tree | 7fc7be69deb0b2c94ff421ae3317250391d99f42 | |
parent | 3e538f924800e36975207dbd4bc9756fb3923fad (diff) | |
download | openocd_libswd-dbb0f31abbb28f65951690613844583a93b1a5e1.tar.gz openocd_libswd-dbb0f31abbb28f65951690613844583a93b1a5e1.tar.bz2 openocd_libswd-dbb0f31abbb28f65951690613844583a93b1a5e1.tar.xz openocd_libswd-dbb0f31abbb28f65951690613844583a93b1a5e1.zip |
- Fixes '[<>]' whitespace
- Replace '\(\w\)\([<>]\)\(\w\)' with '\1 \2 \3'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2394 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | src/helper/membuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/membuf.h b/src/helper/membuf.h index b45850f1..c1af3ae4 100644 --- a/src/helper/membuf.h +++ b/src/helper/membuf.h @@ -82,14 +82,14 @@ int membuf_vsprintf( struct membuf *pBuf , const char *fmt, va_list ap); * * Identical to "strtok()" - pass "pBuff = NULL" on second call * - * NOTE: This call is <b>destructive</b> to the buffer. + * NOTE: This call is <b > destructive</b> to the buffer. */ const char *membuf_strtok( struct membuf *pBuf, const char *delim, void **pSave ); /** Return pointer to the memory in the buffer * @param pBuf - buffer * - * NOTE: Thou shall not modify this pointer, it is <b>CONST</b> + * NOTE: Thou shall not modify this pointer, it is <b > CONST</b> */ const void *membuf_datapointer( struct membuf *pBuf ); |