On Fri, Nov 27, 2020 at 2:42 AM Han-Wen Nienhuys via GitGitGadget <gitgitgadget@xxxxxxxxx> wrote: > +/* > + Errors in reftable calls are signaled with negative integer return values. 0 > + means success. > +*/ This is the format of multi-line comments: /* * A very long * multi-line comment. */ > +enum reftable_error { > + /* Unexpected file system behavior */ > + REFTABLE_IO_ERROR = -2, > + > + /* Format inconsistency on reading data > + */ No need for a multi-line comment here. > + REFTABLE_FORMAT_ERROR = -3, > + > + /* File does not exist. Returned from block_source_from_file(), because > + it needs special handling in stack. > + */ Once again, and for the rest of the file. -- Felipe Contreras