Variable is assigned but never used

This is just a warning, but elliminating warnings makes the code go cleanly through clang static code analyzer.
This commit is contained in:
Thomas Arts 2018-06-13 07:03:04 +02:00
parent 04b8fa3ecb
commit 40fde1807b

View File

@ -1167,7 +1167,7 @@ void uint64_pack(unsigned char *y, ErlNifUInt64 x)
*y++ = x; x >>= 8;
*y++ = x; x >>= 8;
*y++ = x; x >>= 8;
*y++ = x; x >>= 8;
*y++ = x;
}
static