Fix MODE=rel build

This commit is contained in:
Justine Tunney 2022-07-23 12:10:08 -07:00
parent 16fc83f9ce
commit 03dd14c298

View file

@ -302,7 +302,8 @@ textstartup void __printargs(const char *prologue) {
if (prctl(PR_CAPBSET_READ, 0) != -1) {
for (gotsome = i = 0; i <= CAP_LAST_CAP; ++i) {
if (prctl(PR_CAPBSET_READ, i) == 1) {
PRINT(" ☼ %s", DescribeCapability(i));
char buf[64];
PRINT(" ☼ %s", (DescribeCapability)(buf, i));
gotsome = true;
}
}