Commit 97b7bff4 authored by Wayne Davison's avatar Wayne Davison

- Got rid of a superfluous empty line.

- Indent the "oom:" and "skip_filters:" labels away from column 0.
parent e16ca9ef
...@@ -820,7 +820,7 @@ struct file_struct *make_file(char *fname, struct file_list *flist, ...@@ -820,7 +820,7 @@ struct file_struct *make_file(char *fname, struct file_list *flist,
return NULL; return NULL;
} }
skip_filters: skip_filters:
if (verbose > 2) { if (verbose > 2) {
rprintf(FINFO, "[%s] make_file(%s,*,%d)\n", rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
...@@ -1314,7 +1314,6 @@ struct file_list *recv_file_list(int f) ...@@ -1314,7 +1314,6 @@ struct file_list *recv_file_list(int f)
if (!flist->files) if (!flist->files)
goto oom; goto oom;
while ((flags = read_byte(f)) != 0) { while ((flags = read_byte(f)) != 0) {
struct file_struct *file; struct file_struct *file;
...@@ -1375,7 +1374,7 @@ struct file_list *recv_file_list(int f) ...@@ -1375,7 +1374,7 @@ struct file_list *recv_file_list(int f)
return flist; return flist;
oom: oom:
out_of_memory("recv_file_list"); out_of_memory("recv_file_list");
return NULL; /* not reached */ return NULL; /* not reached */
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment