Fix regression from r353026. Pointer was increased instead of value

pointed to.

PR:		241646
Submitted by:	Aleksandr Fedorov <aleksandr.fedorov itglobal.com>
This commit is contained in:
Gleb Smirnoff 2019-11-02 03:09:17 +00:00
parent b144826d79
commit abc4b11cea
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=354244

View File

@ -977,7 +977,7 @@ ng_bridge_unmute(hook_p hook, void *arg)
ng_bridge_nodename(node), NG_HOOK_NAME(hook));
}
}
counter++;
(*counter)++;
return (1);
}