summaryrefslogtreecommitdiff
path: root/ccache.c
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2012-08-07 17:12:33 +0200
committerJoel Rosdahl <joel@rosdahl.net>2012-08-07 17:12:33 +0200
commit5f5f72722899eee4542b836e87a207e9da72ff67 (patch)
tree36fbf66cdfb48596fca91b60d44e5b050ce38e5b /ccache.c
parent15d9f39d92c31b81f528a2fe5efc152c678f342e (diff)
downloadccache-5f5f72722899eee4542b836e87a207e9da72ff67.tar.gz
Fix typo and coding style
Diffstat (limited to 'ccache.c')
-rw-r--r--ccache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ccache.c b/ccache.c
index 22c56e17..5ead8107 100644
--- a/ccache.c
+++ b/ccache.c
@@ -1455,20 +1455,20 @@ cc_process_args(struct args *args, struct args **preprocessor_args,
goto out;
}
+ /* Handle "@file" argument. */
if (str_startswith(argv[i], "@")) {
char *argpath = argv[i] + 1;
struct args *file_args;
file_args = args_init_from_gcc_atfile(argpath);
if (!file_args) {
- cc_log("Coudln't read arg file %s", argpath);
+ cc_log("Couldn't read arg file %s", argpath);
stats_update(STATS_ARGS);
result = false;
goto out;
}
args_insert(args, i, file_args, true);
-
argc = args->argc;
argv = args->argv;
i--;