diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-03-15 18:06:11 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-03-15 18:06:11 -0400 |
commit | 3aff33aa687e47d52f453892498b30ac98a296af (patch) | |
tree | 61560211d409fd97c6ee8e718fe01c9f5db717c6 /src/backend/storage/ipc/procarray.c | |
parent | fd658dbb300456b393536802d1145a9cea7b25d6 (diff) |
Fix typos.
Oskari Saarenmaa
Diffstat (limited to 'src/backend/storage/ipc/procarray.c')
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index 97e8962ae81..740beb691ce 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -71,7 +71,7 @@ typedef struct ProcArrayStruct * Known assigned XIDs handling */ int maxKnownAssignedXids; /* allocated size of array */ - int numKnownAssignedXids; /* currrent # of valid entries */ + int numKnownAssignedXids; /* current # of valid entries */ int tailKnownAssignedXids; /* index of oldest valid element */ int headKnownAssignedXids; /* index of newest element, + 1 */ slock_t known_assigned_xids_lck; /* protects head/tail pointers */ |