diff options
author | 1997-02-06 19:35:52 +0000 | |
---|---|---|
committer | 1997-02-06 19:35:52 +0000 | |
commit | b079feef18d31cec2e68264343626077a56ee702 (patch) | |
tree | 074691e3df66db6f7b534de710d7d88249c76f92 /sys/lib/libsa/rpc.c | |
parent | cd into gcc/f before building g77.info to avoid picking up on the wrong (diff) | |
download | wireguard-openbsd-b079feef18d31cec2e68264343626077a56ee702.tar.xz wireguard-openbsd-b079feef18d31cec2e68264343626077a56ee702.zip |
-Wall printf format correction
Diffstat (limited to 'sys/lib/libsa/rpc.c')
-rw-r--r-- | sys/lib/libsa/rpc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libsa/rpc.c b/sys/lib/libsa/rpc.c index 5f78a869cd2..38c85b2b1a0 100644 --- a/sys/lib/libsa/rpc.c +++ b/sys/lib/libsa/rpc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rpc.c,v 1.8 1996/12/12 08:35:38 mickey Exp $ */ +/* $OpenBSD: rpc.c,v 1.9 1997/02/06 19:35:52 mickey Exp $ */ /* $NetBSD: rpc.c,v 1.16 1996/10/13 02:29:06 christos Exp $ */ /* @@ -258,7 +258,7 @@ recvrpc(d, pkt, len, tleft) if (x != rpc_xid) { #ifdef RPC_DEBUG if (debug) - printf("recvrpc: rp_xid %ld != xid %d\n", x, rpc_xid); + printf("recvrpc: rp_xid %d != xid %d\n", x, rpc_xid); #endif return -1; } @@ -267,7 +267,7 @@ recvrpc(d, pkt, len, tleft) if (x != RPC_REPLY) { #ifdef RPC_DEBUG if (debug) - printf("recvrpc: rp_direction %ld != REPLY\n", x); + printf("recvrpc: rp_direction %d != REPLY\n", x); #endif return -1; } |