diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2021-02-13 13:04:04 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2021-02-13 13:04:04 +0000 |
commit | 8f67d37de16f4d4a3c64b754a079789ce8ad1b25 (patch) | |
tree | f70a7f1a49f2036e84a115da7b6b718d2c702e41 /subversion/libsvn_fs_fs | |
parent | bbee6e0814d5875b85b81f26fd4ca7a28b6f9570 (diff) |
Diffstat (limited to 'subversion/libsvn_fs_fs')
-rw-r--r-- | subversion/libsvn_fs_fs/index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subversion/libsvn_fs_fs/index.c b/subversion/libsvn_fs_fs/index.c index b7ba79f96313..168022e63eb3 100644 --- a/subversion/libsvn_fs_fs/index.c +++ b/subversion/libsvn_fs_fs/index.c @@ -827,7 +827,7 @@ svn_fs_fs__l2p_index_append(svn_checksum_t **checksum, &eof, local_pool)); /* handle new revision */ - if ((entry > 0 && proto_entry.offset == 0) || eof) + if (eof || (entry > 0 && proto_entry.offset == 0)) { /* dump entries, grouped into pages */ |