You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plpgsql_debugger.c:1270:11: style: Local variable 'i' shadows outer variable [shadowVariable]
int i;
^
plpgsql_debugger.c:1246:11: note: Shadowed declaration
int i;
^
plpgsql_debugger.c:1270:11: note: Shadow variable
int i;
^
that solve by
diff --git a/plpgsql_debugger.c b/plpgsql_debugger.c
index 6812592..872355c 100644
--- a/plpgsql_debugger.c+++ b/plpgsql_debugger.c@@ -1267,8 +1267,6 @@ is_datum_visible(PLpgSQL_datum *datum)
if( strncmp( var->refname, "txt", 3 ) == 0 )
{
- int i;-
/*
* Starts with 'txt' - see if the rest of the string is composed
* entirely of digits
The text was updated successfully, but these errors were encountered: