From 97b7bff4d654d9fc679b823d5550ccd9b8a312ad Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 10 Nov 2005 16:45:00 +0000 Subject: [PATCH] - Got rid of a superfluous empty line. - Indent the "oom:" and "skip_filters:" labels away from column 0. --- flist.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flist.c b/flist.c index a24c1176..8f26f03c 100644 --- a/flist.c +++ b/flist.c @@ -820,7 +820,7 @@ struct file_struct *make_file(char *fname, struct file_list *flist, return NULL; } - skip_filters: + skip_filters: if (verbose > 2) { rprintf(FINFO, "[%s] make_file(%s,*,%d)\n", @@ -1314,7 +1314,6 @@ struct file_list *recv_file_list(int f) if (!flist->files) goto oom; - while ((flags = read_byte(f)) != 0) { struct file_struct *file; @@ -1375,7 +1374,7 @@ struct file_list *recv_file_list(int f) return flist; -oom: + oom: out_of_memory("recv_file_list"); return NULL; /* not reached */ } -- 2.34.1