Fix misspelled struct tag.

This was evidently intended to match the struct's typedef name,
but it didn't quite.  Noted while testing find_typedefs.
This commit is contained in:
Tom Lane 2017-05-19 15:05:54 -04:00
parent ac8d7e1b83
commit cf5389f5b5
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ typedef struct ElementsState
} ElementsState;
/* state for get_json_object_as_hash */
typedef struct JhashState
typedef struct JHashState
{
JsonLexContext *lex;
const char *function_name;