diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-20 12:54:15 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-20 12:54:15 -0400 |
commit | ffa83efbb604ba2ed921e86bc6c837f6d605faa2 (patch) | |
tree | fc3cfe72923893af49e4652308e0a15a5ce60830 /src/color.c | |
parent | 4a96b0d67d5d654ec1d5a3d447ceb07392fe87ec (diff) | |
download | bfs-ffa83efbb604ba2ed921e86bc6c837f6d605faa2.tar.xz |
Stop using %m
Diffstat (limited to 'src/color.c')
-rw-r--r-- | src/color.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/color.c b/src/color.c index a0e553f..137d795 100644 --- a/src/color.c +++ b/src/color.c @@ -1197,7 +1197,6 @@ static int print_expr(CFILE *cfile, const struct bfs_expr *expr, bool verbose, i attr(printf(2, 0)) static int cvbuff(CFILE *cfile, const char *format, va_list args) { const struct colors *colors = cfile->colors; - int error = errno; // Color specifier (e.g. ${blu}) state struct esc_seq **esc; @@ -1255,12 +1254,6 @@ static int cvbuff(CFILE *cfile, const char *format, va_list args) { } break; - case 'm': - if (dstrcat(&cfile->buffer, xstrerror(error)) != 0) { - return -1; - } - break; - case 'p': switch (*++i) { case 'q': |