Skip to content

Commit

Permalink
Merge pull request #8 from gahr/master
Browse files Browse the repository at this point in the history
API of integer_callback changed the other way around
  • Loading branch information
bovine committed Nov 8, 2013
2 parents 488ee28 + f0779b4 commit 266f4e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generic/yajltcl.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ boolean_callback (void *context, int boolean)
*/
static int
#if (YAJL_MAJOR >= 2)
integer_callback (void *context, long integerVal)
#else
integer_callback (void *context, long long integerVal)
#else
integer_callback (void *context, long integerVal)
#endif
{
Tcl_Interp *interp = (Tcl_Interp *)context;
Expand Down

0 comments on commit 266f4e4

Please sign in to comment.