code-format

This commit is contained in:
Dominik Maier
2020-04-16 14:47:08 +02:00
parent b420ccdbf8
commit 124665b392
6 changed files with 21 additions and 21 deletions

View File

@ -63,8 +63,7 @@
static char *stdin_file; /* stdin file */
static u8 *in_dir = NULL, /* input folder */
*out_file = NULL,
*at_file = NULL; /* Substitution string for @@ */
*out_file = NULL, *at_file = NULL; /* Substitution string for @@ */
static u8 *in_data; /* Input data */
@ -878,8 +877,7 @@ int main(int argc, char **argv_orig, char **envp) {
if (-1 == stat(infile, &statbuf) || !S_ISREG(statbuf.st_mode)) continue;
#endif
snprintf(outfile, sizeof(outfile), "%s/%s", out_file,
dir_ent->d_name);
snprintf(outfile, sizeof(outfile), "%s/%s", out_file, dir_ent->d_name);
if (read_file(infile)) {
@ -901,8 +899,6 @@ int main(int argc, char **argv_orig, char **envp) {
run_target(fsrv, use_argv);
tcnt = write_results_to_file(fsrv, out_file);
}
if (!quiet_mode) {