Skip to content
Snippets Groups Projects
Commit f960345889e8 authored by Lasse Collin's avatar Lasse Collin
Browse files

xz: Silence a warning when sig_atomic_t is long int.

It can be true at least on z/OS.
parent 8d29af7ca1e3
No related branches found
No related tags found
No related merge requests found
...@@ -152,7 +152,7 @@ ...@@ -152,7 +152,7 @@
extern void extern void
signals_exit(void) signals_exit(void)
{ {
const int sig = exit_signal; const int sig = (int)exit_signal;
if (sig != 0) { if (sig != 0) {
#if defined(TUKLIB_DOSLIKE) || defined(__VMS) #if defined(TUKLIB_DOSLIKE) || defined(__VMS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment