diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2012-08-07 17:12:33 +0200 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2012-08-07 17:12:33 +0200 |
commit | 5f5f72722899eee4542b836e87a207e9da72ff67 (patch) | |
tree | 36fbf66cdfb48596fca91b60d44e5b050ce38e5b /ccache.c | |
parent | 15d9f39d92c31b81f528a2fe5efc152c678f342e (diff) | |
download | ccache-5f5f72722899eee4542b836e87a207e9da72ff67.tar.gz |
Fix typo and coding style
Diffstat (limited to 'ccache.c')
-rw-r--r-- | ccache.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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--; |