Skip to content

Commit cae48ab

Browse files
committed
fix formatting
1 parent f08413b commit cae48ab

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/check_function.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ typedef struct plpgsql_hashent
5353
TransactionId fn_xmin;
5454
ItemPointerData fn_tid;
5555
bool is_checked;
56-
} plpgsql_check_HashEnt;
56+
} plpgsql_check_HashEnt;
5757

5858

5959
static void function_check(PLpgSQL_function *func, PLpgSQL_checkstate *cstate);

src/parser.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ memmem(const void *haystack, size_t haystack_len,
5656
{
5757
if (haystack == NULL)
5858
return NULL;
59-
//or assert(haystack != NULL);
59+
/* or assert(haystack != NULL); */
6060
if (haystack_len == 0)
6161
return NULL;
6262
if (needle == NULL)
6363
return NULL;
64-
//or assert(needle != NULL);
64+
/* or assert(needle != NULL); */
6565
if (needle_len == 0)
6666
return NULL;
6767

typedefs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ plpgsql_check_result_info
3333
plpgsql_check_info
3434
plpgsql_check_pragma_vector
3535
PLpgSQL_checkstate
36+
plpgsql_check_HashEnt
3637
coverage_state
3738
ACCESS_ALLOWED_ACE
3839
ACL

0 commit comments

Comments
 (0)