Skip to content

Commit

Permalink
fix: bad typing conversion between enum and long
Browse files Browse the repository at this point in the history
Fix bad typing conversion between enum and long

Closes #4
  • Loading branch information
lcsmuller committed Dec 7, 2024
1 parent 1f05cf0 commit a213eea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion json-build.h
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ jsonb_object_pop(jsonb *b, char buf[], size_t bufsize)
return code;
}

static long
static jsonbcode
_jsonb_escape(
size_t *pos, char buf[], size_t bufsize, const char str[], size_t len)
{
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TOP = ..
CC ?= gcc
CC = cc

EXES = test fuzz

Expand Down

0 comments on commit a213eea

Please sign in to comment.