diff options
author | duane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-27 16:44:35 +0000 |
---|---|---|
committer | duane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-27 16:44:35 +0000 |
commit | 9c05c92c1437dc243b52d9281ab77e8ac223816f (patch) | |
tree | d81b07194ff848ce3123ddb5692023aef445047d /src/helper/membuf.c | |
parent | 92db0c58b02d2a2cbc90a6e04a50ab97cb3e59a1 (diff) | |
download | riscv-openocd-9c05c92c1437dc243b52d9281ab77e8ac223816f.zip riscv-openocd-9c05c92c1437dc243b52d9281ab77e8ac223816f.tar.gz riscv-openocd-9c05c92c1437dc243b52d9281ab77e8ac223816f.tar.bz2 |
Switch to strotk() grr....
git-svn-id: svn://svn.berlios.de/openocd/trunk@2406 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/membuf.c')
-rw-r--r-- | src/helper/membuf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/helper/membuf.c b/src/helper/membuf.c index 160d0bd..766364a 100644 --- a/src/helper/membuf.c +++ b/src/helper/membuf.c @@ -58,11 +58,13 @@ membuf_strtok(struct membuf *pBuf, const char *sep, void **pLast) if (pBuf) { pBuf->_strtoklast = NULL; *pLast = pBuf; - return strtok_r(((char *)(pBuf->buf)), sep, &(pBuf->_strtoklast)); + // this should be "strtok_r()" but windows lacks */ + return strtok(((char *)(pBuf->buf)), sep); } else { // recover our pBuf pBuf = *((struct membuf **)(pLast)); - return strtok_r(NULL, sep, &(pBuf->_strtoklast)); + // this should be "strtok_r()" but windows lacks */ + return strtok( NULL, sep); } } |