mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
src/flac/utils.c: Fix for OpenBSD
OpenBSD defineds `TIOCGWINSZ` in `termios.h` which is already being included, so this fix should work on most POSIX systems. Closes: https://sourceforge.net/p/flac/bugs/435/
This commit is contained in:
@@ -183,7 +183,7 @@ int get_console_width(void)
|
||||
int s[2];
|
||||
_scrsize (s);
|
||||
width = s[0];
|
||||
#elif defined GWINSZ_IN_SYS_IOCTL
|
||||
#elif defined TIOCGWINSZ
|
||||
struct winsize w;
|
||||
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) != -1)
|
||||
width = w.ws_col;
|
||||
|
||||
Reference in New Issue
Block a user