Eric Pouech eric.pouech@gmail.com writes:
@@ -95,13 +95,13 @@ static int full_numeric_leaf(struct full_value* fv, const unsigned short int* le case LF_QUADWORD: length += 8; fv->type = fv_longlong;
fv->v.llu = *(const long long int*)leaf;
fv->v.llu = *(const long int*)leaf; break; case LF_UQUADWORD: length += 8; fv->type = fv_longlong;
fv->v.llu = *(const long long unsigned int*)leaf;
fv->v.llu = *(const long unsigned int*)leaf;
I don't think I see why 'long' would be the correct type here.