From 6d5cfbaabf0fa36f10b2e5c0428d17d244491004 Mon Sep 17 00:00:00 2001 From: Hans-Joerg Hoexer Date: Thu, 12 Aug 2004 11:21:08 +0000 Subject: Fix compiler warning on alpha. Noted by and ok ho@ --- sbin/isakmpd/monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sbin/isakmpd/monitor.c') 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; } -- cgit v1.2.3