Linus Torvalds <torvalds@xxxxxxxx> wrote: > +void verify_filename(const char *prefix, const char *arg) > +{ > + const char *name; > + struct stat st; > + > + if (*arg == '-') > + die("bad flag '%s' used after filename", arg); > + name = prefix ? prefix_filename(prefix, strlen(prefix), arg) : arg; > + if (!lstat(name, &st)) > + return; > + if (errno == ENOENT); Extra semicolon. -- http://onion.dynserv.net/~timo/ - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html