diff options
-rw-r--r-- | src/main.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/main.cpp b/src/main.cpp index a18c050..e917549 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -208,23 +208,23 @@ int main(int argc, char **argv) int repo_next = repo->setupIncremental(cutoff); /* - * cutoff < resume_from => error exit eventually - * repo_next == cutoff => probably truncated log - */ + * cutoff < resume_from => error exit eventually + * repo_next == cutoff => probably truncated log + */ if (cutoff < resume_from && repo_next == cutoff) /* - * Restore the log file so we fail the next time - * svn2git is invoked with the same arguments - */ + * Restore the log file so we fail the next time + * svn2git is invoked with the same arguments + */ repo->restoreLog(); if (cutoff < min_rev) /* - * We've rewound before the last revision of some - * repository that we've already seen. Start over - * from the beginning. (since cutoff is decreasing, - * we're sure we'll make forward progress eventually) - */ + * We've rewound before the last revision of some + * repository that we've already seen. Start over + * from the beginning. (since cutoff is decreasing, + * we're sure we'll make forward progress eventually) + */ goto retry; if (min_rev < repo_next) |