diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-12-06 14:16:46 -0600 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-12-06 14:16:46 -0600 |
commit | 1949641d102b0fdc8d4314abaee9ba055481fcc0 (patch) | |
tree | 0c302355c988e9b1d2c942bb1cc6d6170a933944 /src/crypto/chap.c | |
parent | 798f7f6b8e007a6075222c2491ddc1416ce937a9 (diff) | |
download | ipxe-1949641d102b0fdc8d4314abaee9ba055481fcc0.tar.gz |
Fix compiler warnings that appear only on OpenBSD.
Diffstat (limited to 'src/crypto/chap.c')
-rw-r--r-- | src/crypto/chap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/chap.c b/src/crypto/chap.c index 2f624564f..13b8fda21 100644 --- a/src/crypto/chap.c +++ b/src/crypto/chap.c @@ -55,7 +55,7 @@ int chap_init ( struct chap_challenge *chap, state_len = ( digest->ctxsize + digest->digestsize ); state = malloc ( state_len ); if ( ! state ) { - DBG ( "CHAP %p could not allocate %d bytes for state\n", + DBG ( "CHAP %p could not allocate %zd bytes for state\n", chap, state_len ); return -ENOMEM; } |