Junio C Hamano <gits...@pobox.com> writes:

> I think you meant something like:
>
>       init_notes(NULL, notes_ref, NULL, 0);
>         marksfile = fopen(marksfilename, "r");
>         if (!marksfile) {
>               regenerate_marks(marksfilename);
>                 marksfile = fopen(marksfilename, "r");
>                 if (!marksfile)
>                       die("cannot read marks file!");
>       } else {
>               ...
>
> Also there is another call to regenerate_marks() without any
> argument.  Has this even been compile-tested?

I've made regenerate_marks() to take (void) parameter list, as
marksfilename is a file scope static and visible to everybody, and
applied something like the above and queued the result in 'pu'.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to