Skip to content

Commit 1fe9e01

Browse files
committed
Changed according to Adriano's suggestion
1 parent 3bea1f0 commit 1fe9e01

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/jrd/Database.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ namespace Jrd
915915

916916
void Database::clearDeleteMark(RelationPermanent* relation)
917917
{
918-
MutexLockGuard g(dbb_del_pages_mutex, FB_FUNCTION);
918+
MutexLockGuard guard(dbb_del_pages_mutex, FB_FUNCTION);
919919

920920
FB_SIZE_T pos;
921921
bool found = dbb_del_pages.findEx([relation](const DelPagesMarker& item)->int
@@ -943,7 +943,6 @@ namespace Jrd
943943
dbb_del_pages.remove(0u);
944944

945945
MutexUnlockGuard checkout(dbb_del_pages_mutex, FB_FUNCTION);
946-
printf("deleteTempPages for relation %s\n", relation->getName().toQuotedString().c_str());
947946
relation->freePages(tdbb);
948947
}
949948
}

0 commit comments

Comments
 (0)