diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-19 21:45:58 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-19 21:45:58 +0100 |
commit | f3fedce6231c135d910b114c845d9ccc47f91ee6 (patch) | |
tree | 69918f9c520c9d7b24c0914fafd7e698d6d82003 | |
parent | d1debb813a465cbe834819adcbb23d5bf7f039ab (diff) | |
download | sds-f3fedce6231c135d910b114c845d9ccc47f91ee6.tar.xz |
sds.c: Remove erranous whitespace at end of line
-rw-r--r-- | src/sds.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -724,7 +724,7 @@ void sdsIncrLen(sds s, size_t incr) { /* Enlarge the free space at the end of the sds string so that the caller * is sure that after calling this function can overwrite up to addlen * bytes after the end of the string, plus one more byte for nul term. - * + * * Note: this does not change the *length* of the sds string as returned * by sdslen(), but only the free buffer space we have. */ sds sdsMakeRoomFor(sds s, size_t addlen) { |