Commit 7f4a7af2 authored by Alvaro Herrera's avatar Alvaro Herrera

Silence compiler

parent bf9aa490
......@@ -68,8 +68,11 @@ ParseCompressionOption(int compression, CompressionAlgorithm *alg, int *level)
else if (compression == 0)
*alg = COMPR_ALG_NONE;
else
{
die_horribly(NULL, modulename, "Invalid compression code: %d\n",
compression);
*alg = COMPR_ALG_NONE; /* keep compiler quiet */
}
/* The level is just the passed-in value. */
if (level)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment