Changeset 324755ea4e8a1ed883615324688f92b9b4c97396
- Timestamp:
- 08/01/08 14:29:16
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1217600956 +0000
- git-parent:
[4bed82ba2ec9a01ba1c538c5f0f2d7c17e0bd687]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1217600956 +0000
- Message:
printf type mismatch, refs #34
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r885a9d3 |
r324755e |
|
| 78 | 78 | if((rv = Ewrite(&payload, sizeof(payload))) != sizeof(payload)) { |
|---|
| 79 | 79 | noitL(noit_error, "Error writing jlog header over SSL %d != %d\n", |
|---|
| 80 | | rv, sizeof(payload)); |
|---|
| | 80 | rv, (int)sizeof(payload)); |
|---|
| 81 | 81 | return -1; |
|---|
| 82 | 82 | } |
|---|