From: Joel Rosdahl Date: Mon, 14 Sep 2015 17:48:42 +0000 (+0200) Subject: Fix typo in 1eef4547400f2ba0c49db4a47e0413612b81cc43 X-Git-Tag: v3.2.4~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8ea6df7f1027ecb422f2719f26ff52422207a64;p=thirdparty%2Fccache.git Fix typo in 1eef4547400f2ba0c49db4a47e0413612b81cc43 --- diff --git a/ccache.c b/ccache.c index ca7097740..79ae0e83f 100644 --- a/ccache.c +++ b/ccache.c @@ -805,7 +805,7 @@ put_file_in_cache(const char *source, const char *dest) ret = link(source, dest); } else { ret = copy_file( - source, dest, conf->compression ? conf->compress_level : 0); + source, dest, conf->compression ? conf->compression_level : 0); } if (ret != 0) { cc_log("Failed to %s %s to %s: %s",