Changeset 5f469fd0e15771e05af1ab103dcf666177e7dfda
- Timestamp:
- 02/20/11 17:18:52
(2 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1298222332 +0000
- git-parent:
[39129da7159b3eff609749e4b2a1bf4596bde108]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1298222332 +0000
- Message:
hush warning about this not being used in a varargs context
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| refa9375 |
r5f469fd |
|
| 66 | 66 | } |
|---|
| 67 | 67 | if(!(pb = printbuf_new())) { |
|---|
| 68 | | MC_ERROR("json_object_from_file: printbuf_new failed\n"); |
|---|
| | 68 | MC_ERROR("json_object_from_file: printbuf_new failed%s\n", ""); |
|---|
| 69 | 69 | return (struct json_object*)error_ptr(-1); |
|---|
| 70 | 70 | } |
|---|
| … | … | |
| 91 | 91 | |
|---|
| 92 | 92 | if(!obj) { |
|---|
| 93 | | MC_ERROR("json_object_to_file: object is null\n"); |
|---|
| | 93 | MC_ERROR("json_object_to_file: object is null%s\n", ""); |
|---|
| 94 | 94 | return -1; |
|---|
| 95 | 95 | } |
|---|