From 57ef65916ba382fa29040d03d1cff1dc7bf7ddd8 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 20 Feb 2013 14:14:58 +0100 Subject: [PATCH] node: code cleanup, make tick_infobox static It's not used outside of src/node.cc so make it static. --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index df89f3da323..7fe90ca1879 100644 --- a/src/node.cc +++ b/src/node.cc @@ -145,7 +145,7 @@ static bool need_immediate_cb; static Persistent immediate_callback_sym; // for quick ref to tickCallback values -struct { +static struct { uint32_t length; uint32_t index; uint32_t depth;