src/lib/env.c: fix logging features mask

When trying to compile vzctl with clang 2.8, got this:

  CC     env.lo
 env.c:344:38: warning: length modifier 'L' results in undefined behavior or no
      effect with 'x' conversion specifier [-Wformat]
        logger(3, 0, "Set features mask %016Lx/%016Lx",
                                        ~~~~^~
 env.c:344:45: warning: length modifier 'L' results in undefined behavior or no
      effect with 'x' conversion specifier [-Wformat]
        logger(3, 0, "Set features mask %016Lx/%016Lx",
                                               ~~~~^~
 2 warnings generated.

Apparently we meant 'llx' not 'Lx'. Fix it.

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