From 8c21802c973f357176e40fe93c10b29fb5dfba02 Mon Sep 17 00:00:00 2001 From: James Snyder Date: Tue, 15 Sep 2009 17:45:45 +0000 Subject: [PATCH] Fix typo. --- src/modules/luarpc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/luarpc.c b/src/modules/luarpc.c index 96ea0956..3a6a2057 100644 --- a/src/modules/luarpc.c +++ b/src/modules/luarpc.c @@ -815,7 +815,7 @@ static int helper_get(lua_State *L, Helper *helper ) { switch( e.type ) { - deal_with_error( L, h->handle, errorString( e.errnum ) ); + deal_with_error( L, helper->handle, errorString( e.errnum ) ); case nonfatal: lua_pushnil( L ); return 1; @@ -936,7 +936,7 @@ static int helper_call (lua_State *L) { switch( e.type ) { - deal_with_error( L, h->handle, errorString( e.errnum ) ); + deal_with_error( L, h->handle, errorString( e.errnum ) ); case nonfatal: lua_pushnil( L ); return 1; @@ -993,7 +993,7 @@ static int helper_newindex( lua_State *L ) { switch( e.type ) { - deal_with_error( L, h->handle, errorString( e.errnum ) ); + deal_with_error( L, h->handle, errorString( e.errnum ) ); case nonfatal: lua_pushnil( L ); return 1;