From: John Marshall Date: Wed, 20 Sep 2023 20:11:08 +0000 (+1200) Subject: Align backspace character [cosmetic] X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=e90f6e8f335aa2994fc414bef8ec1acd1a583bc8;p=klib.git Align backspace character [cosmetic] --- diff --git a/kseq.h b/kseq.h index 81cc774..2959622 100644 --- a/kseq.h +++ b/kseq.h @@ -107,7 +107,7 @@ typedef struct __kstring_t { if (ks->end == -1) { ks->is_eof = 1; return -3; } \ } else break; \ } \ - if (delimiter == KS_SEP_LINE) { \ + if (delimiter == KS_SEP_LINE) { \ unsigned char *sep = memchr(ks->buf + ks->begin, '\n', ks->end - ks->begin); \ i = sep != NULL ? sep - ks->buf : ks->end; \ } else if (delimiter > KS_SEP_MAX) { \