aboutsummaryrefslogtreecommitdiff
path: root/src/helper/membuf.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-24 09:38:21 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-24 09:38:21 +0000
commitfddbc58091cc13934b0e6e4f835884dcdefd4e09 (patch)
tree66d4025fb3f9f471b573eaac66ac1caf052fba51 /src/helper/membuf.c
parent2428bc2a5cbe27659c4605e29b804031f133cf0c (diff)
Remove whitespace at end of lines, step 2.
- Replace '\s*$' with ''. git-svn-id: svn://svn.berlios.de/openocd/trunk@2398 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/membuf.c')
-rw-r--r--src/helper/membuf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/helper/membuf.c b/src/helper/membuf.c
index 1efb12b6..4e25d81a 100644
--- a/src/helper/membuf.c
+++ b/src/helper/membuf.c
@@ -29,7 +29,7 @@ struct membuf {
// buflen is alway "+1" bigger then
// what is shown here, the +1 is for
// the NULL string terminator
-#define DEFAULT_BUFSIZE 100
+#define DEFAULT_BUFSIZE 100
size_t maxlen; // allocated size
size_t curlen; // where we are inserting at
char *_strtoklast;
@@ -40,7 +40,7 @@ struct membuf {
#define space_avail(pBuf) (pBuf->maxlen - pBuf->curlen)
#define dataend(pBuf) (((char *)(pBuf->buf)) + pBuf->curlen)
-size_t
+size_t
membuf_len(struct membuf *pBuf)
{
return pBuf->curlen;
@@ -65,7 +65,7 @@ membuf_strtok(struct membuf *pBuf, const char *sep, void **pLast)
return strtok_r(NULL, sep, &(pBuf->_strtoklast));
}
}
-
+
struct membuf *
@@ -161,7 +161,7 @@ membuf_vsprintf(struct membuf *pBuf, const char *fmt, va_list ap)
// do work
r = vsnprintf(dataend(pBuf),
sa,
- fmt,
+ fmt,
ap);
if ((r > 0) && (((size_t)(r)) < sa)) {
// Success!