ct_setcpus(): fix a comparison

Noticed the following warning when compiling vzctl for 32-bit:

	hooks_ct.c: In function 'ct_setcpus':
	hooks_ct.c:373: warning: comparison is always true due to limited range of data type

Apparently we have

	unsigned long max_lim = ~0UL;

so the comparison should be with ~0UL as well, not with ~0ULL as it was.

Introduced by commit f802781.

Cc: Glauber Costa <glommer@openvz.org>
Signed-off-by: Kir Kolyshkin <kir@openvz.org>
1 file changed