diff options
author | Robert Haas <rhaas@postgresql.org> | 2012-05-02 14:30:58 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2012-05-02 14:30:58 -0400 |
commit | 8e0c5195dff70ffc9c132716d0cf7f3eff45e302 (patch) | |
tree | db9066eaac2b0bcd2e15c9df153a1e95f01c0e14 /src | |
parent | e6c2e8cb87846161033e1f215876c4b95f631df0 (diff) | |
download | postgresql-8e0c5195dff70ffc9c132716d0cf7f3eff45e302.tar.gz postgresql-8e0c5195dff70ffc9c132716d0cf7f3eff45e302.zip |
Add missing parenthesis in comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/storage/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index a66c4849c12..987bc082608 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -180,7 +180,7 @@ typedef struct PROC_HDR { /* Array of PGPROC structures (not including dummies for prepared txns) */ PGPROC *allProcs; - /* Array of PGXACT structures (not including dummies for prepared txns */ + /* Array of PGXACT structures (not including dummies for prepared txns) */ PGXACT *allPgXact; /* Length of allProcs array */ uint32 allProcCount; |