This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
jdk-build-libs
/
json-c
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
11
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fix the definition of the error_description() macro in bits.h now that json_tokener_errors[] is not exported.
tags/json-c-0.13-20171207
Eric Haszlakiewicz
11 years ago
parent
2149a04ca8
commit
1da0599e0e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
bits.h
+ 1
- 1
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
Write
Preview
Loading…
Cancel
Save