libcompat.h: strsignal() should be not be decleared const
authorAnthony G. Basile <blueness@gentoo.org>
Sun, 13 Mar 2016 15:05:29 +0000 (11:05 -0400)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 23 Mar 2016 12:48:16 +0000 (14:48 +0200)
commitd6e25ddedd2ead9e297b0abf1c0c99d0938854d2
treef38ce37d069da24d1e8165878a09169924691909
parentd7c8ce09479c4eb112f4a88c008a7ed012dc8c9a
libcompat.h: strsignal() should be not be decleared const

POSIX standards requires strsignal() to return a pointer to a char,
not a const pointer to a char. [1]  On uClibc, and possibly other
libc's, that do not HAVE_DECL_STRSIGNAL, libcompat.h declares
const char *strsignal (int sig) which causes a type error.

[1] man 3 strsignal

https://bugzilla.gnome.org/show_bug.cgi?id=763567
libs/gst/check/libcheck/libcompat.h