diff options
| author | Marius Strobl <marius@FreeBSD.org> | 2014-06-27 19:57:57 +0000 |
|---|---|---|
| committer | Marius Strobl <marius@FreeBSD.org> | 2014-06-27 19:57:57 +0000 |
| commit | 7344ee184bebe6d1df0c60f09d4952653c47c1d8 (patch) | |
| tree | 5659c928ca0c4b04ac6a04a7214171d103c50f90 /sys/dev/vt/vt.h | |
| parent | e6683f19ddd1f227233ea4acafacb80c9ac955fa (diff) | |
Notes
Diffstat (limited to 'sys/dev/vt/vt.h')
| -rw-r--r-- | sys/dev/vt/vt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vt/vt.h b/sys/dev/vt/vt.h index 9728946de10c9..cd6aa5ba4db2a 100644 --- a/sys/dev/vt/vt.h +++ b/sys/dev/vt/vt.h @@ -224,7 +224,7 @@ void vtbuf_extract_marked(struct vt_buf *vb, term_char_t *buf, int sz); ((mask)->vbm_row & ((uint64_t)1 << ((row) % 64))) #define VTBUF_DIRTYCOL(mask, col) \ ((mask)->vbm_col & ((uint64_t)1 << ((col) % 64))) -#define VTBUF_SPACE_CHAR (' ' | TC_WHITE << 26 | TC_BLACK << 29) +#define VTBUF_SPACE_CHAR(attr) (' ' | (attr)) #define VHS_SET 0 #define VHS_CUR 1 |
