1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-11 14:10:34 +00:00

Actually make the 'amount' argument to racct_adjust_resource() signed,

as it was always supposed to be.

MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2015-12-13 11:21:13 +00:00
parent 57e2ebdc08
commit a8e0740e85
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=292161

View File

@ -501,7 +501,7 @@ racct_destroy(struct racct **racct)
*/
static void
racct_adjust_resource(struct racct *racct, int resource,
uint64_t amount)
int64_t amount)
{
ASSERT_RACCT_ENABLED();