diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-04-04 14:06:08 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-04-04 14:06:08 +0000 |
commit | c731aa413bf6eb6436cb2191ccba3269214873d4 (patch) | |
tree | 0a4b00466a1112fdc62faf30cd5f75145075e436 | |
parent | b5c62e616a43b56854c462be451073a4dd9e9b69 (diff) |
arla_warn -> arla_warnx if there is no errno to pass...
-rw-r--r-- | usr.sbin/afs/src/arlad/nnpfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/afs/src/arlad/nnpfs.c b/usr.sbin/afs/src/arlad/nnpfs.c index ff92528aeb7..fd05971faa2 100644 --- a/usr.sbin/afs/src/arlad/nnpfs.c +++ b/usr.sbin/afs/src/arlad/nnpfs.c @@ -315,7 +315,7 @@ nnpfs_send_message_wakeup_data (int fd, u_int seqnum, int error, if (sizeof(msg.msg) < size || size < 0) { errno = EINVAL; - arla_warn (ADEBMSG, + arla_warnx (ADEBMSG, "nnpfs_send_message_wakeup_data: invalid message size %d", size); return errno; |