Skip to content

Commit 1bf271c

Browse files
committed
SERVER-14378: fix assert codes
1 parent 904af6b commit 1bf271c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mongo/db/storage/mmap_v1/mmap_v1_database_catalog_entry.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ namespace mongo {
802802
CollectionOptions options;
803803
if ( entry["options"].isABSONObj() ) {
804804
Status status = options.parse( entry["options"].Obj() );
805-
fassert( 18522, status );
805+
fassert( 18523, status );
806806
}
807807
return options;
808808
}

0 commit comments

Comments
 (0)