commit 9e2d05155fd66ac528765af1d592aea55ba4fe78 from: Omar Polo date: Thu Apr 25 10:47:02 2024 UTC got-notify-http: use fatalx since errno is useless here commit - 283939fb8245f1600227fa1cde3c5623666fac8d commit + 9e2d05155fd66ac528765af1d592aea55ba4fe78 blob - 86cd2a944e00cac2d2fdbe97332b4f1693761941 blob + 1ee9998a747b22c9c1ab73f4b57c482bf2d573fd --- gotd/libexec/got-notify-http/got-notify-http.c +++ gotd/libexec/got-notify-http/got-notify-http.c @@ -1043,5 +1043,5 @@ main(int argc, char **argv) if (response_code >= 200 && response_code < 300) return 0; - fatal("request failed with code %d", response_code); + fatalx("request failed with code %d", response_code); }