aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2009-09-04 15:21:00 +0300
committerPetri Lehtinen <petri@digip.org>2009-09-04 15:21:00 +0300
commit78eda92908fd98e9e20df89d3f0c26f7232de141 (patch)
tree5a40cd4b9efccee7fac9c85235f482f3f6eef001 /src
parent6b70406bf491c3b02f34a1893b2c61240c81a55a (diff)
downloadjansson-78eda92908fd98e9e20df89d3f0c26f7232de141.zip
jansson-78eda92908fd98e9e20df89d3f0c26f7232de141.tar.gz
jansson-78eda92908fd98e9e20df89d3f0c26f7232de141.tar.bz2
jansson.h: Fix typo
json_is_true was spelled jsin_is_true. Quite fatal.
Diffstat (limited to 'src')
-rw-r--r--src/jansson.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jansson.h b/src/jansson.h
index 6efc6db..02b20f5 100644
--- a/src/jansson.h
+++ b/src/jansson.h
@@ -38,7 +38,7 @@ typedef struct {
#define json_is_number(json) (json_is_integer(json) || json_is_real(json))
#define json_is_true(json) (json && json_typeof(json) == JSON_TRUE)
#define json_is_false(json) (json && json_typeof(json) == JSON_FALSE)
-#define json_is_boolean(json) (jsin_is_true(json) || json_is_false(json))
+#define json_is_boolean(json) (json_is_true(json) || json_is_false(json))
#define json_is_null(json) (json && json_typeof(json) == JSON_NULL)
/* construction, destruction, reference counting */