diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2004-08-12 11:21:08 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2004-08-12 11:21:08 +0000 |
commit | 6d5cfbaabf0fa36f10b2e5c0428d17d244491004 (patch) | |
tree | a60e7576bf03cb0d96a5ee5d43a5900ebba85a90 /sbin/isakmpd/monitor.c | |
parent | d179d0db6d6242321035da442e4fda9d97fcdefb (diff) |
Fix compiler warning on alpha.
Noted by and ok ho@
Diffstat (limited to 'sbin/isakmpd/monitor.c')
-rw-r--r-- | sbin/isakmpd/monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/monitor.c b/sbin/isakmpd/monitor.c index 48a6c9473f5..bd14005e4be 100644 --- a/sbin/isakmpd/monitor.c +++ b/sbin/isakmpd/monitor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: monitor.c,v 1.28 2004/08/08 19:11:06 deraadt Exp $ */ +/* $OpenBSD: monitor.c,v 1.29 2004/08/12 11:21:07 hshoexer Exp $ */ /* * Copyright (c) 2003 Håkan Olsson. All rights reserved. @@ -1169,6 +1169,6 @@ m_priv_test_state(int state) { if (cur_state != state) log_print("m_priv_test_state: Illegal state: %d != %d", - cur_state, state); + (int)cur_state, state); return; } |