diff options
author | Colin Guthrie <colin@mageia.org> | 2014-06-16 21:53:20 +0100 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2014-06-16 21:53:20 +0100 |
commit | a8f714b1d6a99b454ae674ac6f0e72d329456f7b (patch) | |
tree | b545e49de38eb7d254e31a003cac1daeec0ecd09 | |
parent | 80712f51f1058382a15ce53622d5ce80d7182545 (diff) | |
download | svn2git-a8f714b1d6a99b454ae674ac6f0e72d329456f7b.tar svn2git-a8f714b1d6a99b454ae674ac6f0e72d329456f7b.tar.gz svn2git-a8f714b1d6a99b454ae674ac6f0e72d329456f7b.tar.bz2 svn2git-a8f714b1d6a99b454ae674ac6f0e72d329456f7b.tar.xz svn2git-a8f714b1d6a99b454ae674ac6f0e72d329456f7b.zip |
main: Whitespace (comments)
-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) |