[core] perf: simpler buffer_string_space() (fixed)

This commit is contained in:
Glenn Strauss 2018-11-18 02:47:22 -05:00
parent 70d7d0a0a1
commit d1bf435573
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ static inline size_t buffer_string_length(const buffer *b) {
}
static inline size_t buffer_string_space(const buffer *b) {
return NULL != b ? b->size - (0 != b->used) : 0;
return NULL != b ? b->size - b->used - (0 == b->used) : 0;
}
static inline void buffer_append_string_buffer(buffer *b, const buffer *src) {