]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Minor code style fix
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 2 Mar 2013 19:33:41 +0000 (20:33 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 2 Mar 2013 19:33:41 +0000 (20:33 +0100)
ccache.c

index 4b5e69601252d504e51e03642f5bb721f57e00a4..8f1ab031e8b41d15c8a40aa5c8922815618327f8 100644 (file)
--- a/ccache.c
+++ b/ccache.c
@@ -838,7 +838,7 @@ to_cache(struct args *args)
         */
        if (create_cachedirtag(conf->cache_dir) != 0) {
                cc_log("Failed to create %s/CACHEDIR.TAG (%s)\n",
-                       conf->cache_dir, strerror(errno));
+                      conf->cache_dir, strerror(errno));
                stats_update(STATS_ERROR);
                failed();
        }
@@ -1206,7 +1206,7 @@ calculate_object_hash(struct args *args, struct mdfour *hash, int direct_mode)
                        "OBJCPLUS_INCLUDE_PATH", /* clang */
                        NULL
                };
-               for (p = envvars; *p != NULL ; ++p) {
+               for (p = envvars; *p != NULL; ++p) {
                        char *v = getenv(*p);
                        if (v) {
                                hash_delimiter(hash, *p);