correct tabsize

This commit is contained in:
PauloMelo 2015-12-11 22:31:14 +00:00
parent d811bf71dc
commit a6ccf2bae9
2 changed files with 2 additions and 2 deletions

View File

@ -576,7 +576,7 @@ void kore_buf_free(struct kore_buf *);
struct kore_buf *kore_buf_create(u_int32_t);
void kore_buf_append(struct kore_buf *, const void *, u_int32_t);
u_int8_t *kore_buf_release(struct kore_buf *, u_int32_t *);
void kore_buf_reset(struct kore_buf *);
void kore_buf_reset(struct kore_buf *);
void kore_buf_appendf(struct kore_buf *, const char *, ...);
void kore_buf_appendv(struct kore_buf *, const char *, va_list);

View File

@ -144,5 +144,5 @@ kore_buf_replace_string(struct kore_buf *b, char *src, void *dst, size_t len)
void
kore_buf_reset(struct kore_buf *buf)
{
buf->offset = 0;
buf->offset = 0;
}