From bfaed0ce348959f59f5821732805cc2c1400f707 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 22 Oct 2012 05:17:00 +0000 Subject: [PATCH] Use the name "nspp" for a variable of type "pointer to nsock_pool." --- nse_nsock.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nse_nsock.cc b/nse_nsock.cc index 3c2f45c8d..297cb39ca 100644 --- a/nse_nsock.cc +++ b/nse_nsock.cc @@ -93,11 +93,11 @@ static nsock_pool new_pool (lua_State *L) static nsock_pool get_pool (lua_State *L) { - nsock_pool *nsp; - nsp = (nsock_pool *) lua_touserdata(L, NSOCK_POOL); - assert(nsp != NULL); - assert(*nsp != NULL); - return *nsp; + nsock_pool *nspp; + nspp = (nsock_pool *) lua_touserdata(L, NSOCK_POOL); + assert(nspp != NULL); + assert(*nspp != NULL); + return *nspp; } static std::string hexify (const unsigned char *str, size_t len)