1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

xz: Silence a warning from clang -Wsign-conversion in main.c.

This commit is contained in:
Lasse Collin 2019-06-24 22:57:43 +03:00
parent 0e3c4002f8
commit 267afcd995

View file

@ -326,5 +326,5 @@ main(int argc, char **argv)
if (es == E_WARNING && no_warn)
es = E_SUCCESS;
tuklib_exit(es, E_ERROR, message_verbosity_get() != V_SILENT);
tuklib_exit((int)es, E_ERROR, message_verbosity_get() != V_SILENT);
}