Skip to content

Fix build on OpenBSD (do not try to call macros with :: prefix).

Vadim Zhukov requested to merge zhukov/kid3:master into master

The fileno() is a macro on OpenBSD (and that's perfectly valid from POSIX point of view), so the ::fileno(foo) fails to compile. I've removed :: prefix from both fileno() and isatty() calls, since adding it everywhere is a bad idea due to cases like this happening.

Merge request reports