diff options
author | Peter Eisentraut | 2016-09-30 16:00:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-09-30 19:27:51 +0000 |
commit | cd03890d0b5d9cbcfca169195d71f1693f84cafa (patch) | |
tree | bf819800cdb3b353dfedd165429f8d23aeb71719 | |
parent | 330b48b94b53bcbbc490f952d6798d5ab637721a (diff) |
Fix breakage in previous change
-rw-r--r-- | src/include/utils/jsonb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/jsonb.h b/src/include/utils/jsonb.h index 48ca9dc913..470d5b1050 100644 --- a/src/include/utils/jsonb.h +++ b/src/include/utils/jsonb.h @@ -241,7 +241,7 @@ enum jbvType */ struct JsonbValue { - jbvType type; /* Influences sort order */ + enum jbvType type; /* Influences sort order */ union { |