From febf97c1412c96b666feba8b0f2a0134f523835a Mon Sep 17 00:00:00 2001 From: claudio Date: Fri, 18 Apr 2014 22:23:50 +0000 Subject: [PATCH] There is no need to initialize globals to 0. --- sys/net/pipex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/net/pipex.c b/sys/net/pipex.c index 9fc28deeeb6..06e8e6d7c06 100644 --- a/sys/net/pipex.c +++ b/sys/net/pipex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pipex.c,v 1.48 2013/11/11 09:15:34 mpi Exp $ */ +/* $OpenBSD: pipex.c,v 1.49 2014/04/18 22:23:50 claudio Exp $ */ /*- * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -95,8 +95,8 @@ struct pipex_hash_head struct radix_node_head pipex_rd_head4; struct radix_node_head pipex_rd_head6; -int pipex_rd_head4_initialized = 0; -int pipex_rd_head6_initialized = 0; +int pipex_rd_head4_initialized; +int pipex_rd_head6_initialized; struct timeout pipex_timer_ch; /* callout timer context */ int pipex_prune = 1; /* walk list every seconds */ -- 2.20.1