diff options
author | bde <bde@FreeBSD.org> | 1998-08-02 16:44:18 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-02 16:44:18 +0000 |
commit | 1d56e79a13576df16cca10607ab99daa27920cd2 (patch) | |
tree | 53b665909757443d870d49508bde422b81c4713b /libexec/talkd/print.c | |
parent | b7b0859c3f4470d1bd2770f26c5af6f037833993 (diff) | |
download | FreeBSD-src-1d56e79a13576df16cca10607ab99daa27920cd2.zip FreeBSD-src-1d56e79a13576df16cca10607ab99daa27920cd2.tar.gz |
Fixed printf format errors.
Diffstat (limited to 'libexec/talkd/print.c')
-rw-r--r-- | libexec/talkd/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/talkd/print.c b/libexec/talkd/print.c index a862dbc..fffdf9c 100644 --- a/libexec/talkd/print.c +++ b/libexec/talkd/print.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)print.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$Id: print.c,v 1.6 1997/12/02 12:33:17 charnier Exp $"; + "$Id: print.c,v 1.7 1997/12/24 19:39:57 imp Exp $"; #endif /* not lint */ /* debug print routines */ @@ -67,7 +67,7 @@ print_request(cp, mp) tp = tbuf; } else tp = types[mp->type]; - syslog(LOG_DEBUG, "%s: %s: id %d, l_user %s, r_user %s, r_tty %s", + syslog(LOG_DEBUG, "%s: %s: id %lu, l_user %s, r_user %s, r_tty %s", cp, tp, mp->id_num, mp->l_name, mp->r_name, mp->r_tty); } |