Skip to content

Commit

Permalink
fix huddle encoding of boolean types
Browse files Browse the repository at this point in the history
  • Loading branch information
cshorler committed Feb 28, 2024
1 parent 372c4e1 commit 4b2f989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generic/yajltcl.c
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ parse2huddle_boolean_callback (void *context, int boolean)
{
yajltcl_clientData *yajlData = context;

Tcl_DStringAppendElement (&yajlData->p2dString, boolean ? "1" : "0");
Tcl_DStringAppendElement (&yajlData->p2dString, boolean ? "b true" : "b false");
return 1;
}

Expand Down

0 comments on commit 4b2f989

Please sign in to comment.