Skip to content

Commit 6597041

Browse files
authored
src(cpp): fix spelling (#8466)
1 parent daad2a6 commit 6597041

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/jrd/extds/ExtDS.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#ifdef EDS_DEBUG
6464

6565
#undef FB_ASSERT_FAILURE_STRING
66-
#define FB_ASSERT_FAILURE_STRING "Procces ID %d: assertion (%s) failure: %s %" LINEFORMAT
66+
#define FB_ASSERT_FAILURE_STRING "Process ID %d: assertion (%s) failure: %s %" LINEFORMAT
6767

6868
#undef fb_assert
6969
#define fb_assert(ex) {if (!(ex)) {gds__log(FB_ASSERT_FAILURE_STRING, getpid(), #ex, __FILE__, __LINE__);}}
@@ -977,7 +977,7 @@ void ConnectionsPool::putConnection(thread_db* tdbb, Connection* conn)
977977
string str;
978978
str.printf("Before put Item 0x%08X into pool\n", item);
979979
printPool(str);
980-
gds__log("Procces ID %d: connections pool is corrupted\n%s", getpid(), str.c_str());
980+
gds__log("Process ID %d: connections pool is corrupted\n%s", getpid(), str.c_str());
981981
}
982982
#endif
983983

@@ -996,7 +996,7 @@ void ConnectionsPool::putConnection(thread_db* tdbb, Connection* conn)
996996
#ifdef EDS_DEBUG
997997
string str;
998998
str.printf("Item 0x%08X to put into pool is oldest", item);
999-
gds__log("Procces ID %d: %s", getpid(), str.c_str());
999+
gds__log("Process ID %d: %s", getpid(), str.c_str());
10001000
#endif
10011001
m_allCount++;
10021002
oldest = removeOldest();
@@ -1019,7 +1019,7 @@ void ConnectionsPool::putConnection(thread_db* tdbb, Connection* conn)
10191019
if (!ok)
10201020
printPool(str);
10211021

1022-
gds__log("Procces ID %d: %s", getpid(), str.c_str());
1022+
gds__log("Process ID %d: %s", getpid(), str.c_str());
10231023
#endif
10241024
}
10251025
else
@@ -1046,7 +1046,7 @@ void ConnectionsPool::putConnection(thread_db* tdbb, Connection* conn)
10461046
string str;
10471047
str.printf("After put Item 0x%08X into pool\n", item);
10481048
printPool(str);
1049-
gds__log("Procces ID %d: connections pool is corrupted\n%s", getpid(), str.c_str());
1049+
gds__log("Process ID %d: connections pool is corrupted\n%s", getpid(), str.c_str());
10501050
}
10511051
#endif
10521052
}
@@ -1079,7 +1079,7 @@ void ConnectionsPool::addConnection(thread_db* tdbb, Connection* conn, ULONG has
10791079
string str;
10801080
printPool(str);
10811081
str.printf("Before add Item 0x%08X into pool\n", item);
1082-
gds__log("Procces ID %d: connections pool is corrupted\n%s", getpid(), str.c_str());
1082+
gds__log("Process ID %d: connections pool is corrupted\n%s", getpid(), str.c_str());
10831083
}
10841084
#endif
10851085
if (m_allCount >= m_maxCount)
@@ -1098,7 +1098,7 @@ void ConnectionsPool::addConnection(thread_db* tdbb, Connection* conn, ULONG has
10981098
string str;
10991099
printPool(str);
11001100
str.printf("After add Item 0x%08X into pool\n", item);
1101-
gds__log("Procces ID %d: connections pool is corrupted\n%s", getpid(), str.c_str());
1101+
gds__log("Process ID %d: connections pool is corrupted\n%s", getpid(), str.c_str());
11021102
}
11031103
#endif
11041104
}
@@ -1119,7 +1119,7 @@ void ConnectionsPool::delConnection(thread_db* tdbb, Connection* conn, bool dest
11191119
{
11201120
string str;
11211121
str.printf("Item 0x%08X to delete from pool already not there", item);
1122-
gds__log("Procces ID %d: %s", getpid(), str.c_str());
1122+
gds__log("Process ID %d: %s", getpid(), str.c_str());
11231123
}
11241124
#endif
11251125
}
@@ -1237,7 +1237,7 @@ void ConnectionsPool::clear(thread_db* tdbb)
12371237
{
12381238
string str;
12391239
printPool(str);
1240-
gds__log("Procces ID %d: connections pool is corrupted (clear)\n%s", getpid(), str.c_str());
1240+
gds__log("Process ID %d: connections pool is corrupted (clear)\n%s", getpid(), str.c_str());
12411241
}
12421242
#endif
12431243

0 commit comments

Comments
 (0)