From: Tracey Emery Subject: rm useless continue To: gameoftrees@openbsd.org Date: Tue, 8 Nov 2022 15:14:33 -0700 This removes a useless continue. ok? -- Tracey Emery diff /home/tracey/src/got commit - 3bf54024e7046b0ac7b206cba0f0d5482a8fa8e8 path + /home/tracey/src/got blob - 890ae033826305afdd0fc0401d8ff424ea07eaf6 file + lib/path.c --- lib/path.c +++ lib/path.c @@ -505,7 +505,6 @@ got_path_find_prog(char **filename, const char *prog) break; free(*filename); *filename = NULL; - continue; } free(dup); return err;