]> git.ipfire.org Git - thirdparty/util-linux.git/commit
cfdisk: fix missing prototype for `get_wch`
authorPatrick Steinhardt <ps@pks.im>
Tue, 10 Apr 2018 12:36:31 +0000 (13:36 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 11 Jul 2018 14:04:38 +0000 (16:04 +0200)
commit366545e745de2a7391dadf1e9f65993efe7a80af
tree275da8c45e701b6976f0e4c42d417670acf54542
parent58b2bb661d494cc22023dfac84a39f3cfba1ac54
cfdisk: fix missing prototype for `get_wch`

The header <ncursesw/ncurses.h> defines the get_wch(3) function only
when `NCURSES_WIDECHAR` is defined. This define is actually getting set
in the same header file, but only in case `_XOPEN_SOURCE` is defined and
has a value of 500 or higher. As we already have the precedence of
defining `_XOPEN_SOURCE` to a value of 600 in some other files, simply
define it to the minimum required value of 500 in "cfdisk.c". This
silences a warning for `get_wch` being unknown.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
disk-utils/cfdisk.c