Fix the definition of the error_description() macro in bits.h now that json_tokener_errors[] is not exported.

This commit is contained in:
Eric Haszlakiewicz
2014-05-03 22:26:26 -04:00
parent 2149a04ca8
commit 1da0599e0e

2
bits.h
View File

@@ -22,7 +22,7 @@
#define hexdigit(x) (((x) <= '9') ? (x) - '0' : ((x) & 7) + 9)
#define error_ptr(error) ((void*)error)
#define error_description(error) (json_tokener_errors[error])
#define error_description(error) (json_tokener_get_error(error))
#define is_error(ptr) (ptr == NULL)
#endif