From 8e0c5195dff70ffc9c132716d0cf7f3eff45e302 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Wed, 2 May 2012 14:30:58 -0400 Subject: [PATCH] Add missing parenthesis in comment. --- src/include/storage/proc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index a66c4849c1..987bc08260 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;