Kousik Sanagavarapu <five231003@xxxxxxxxx> writes: > } else if (atom->u.raw_data.option == RAW_LENGTH) { > - v->s = xstrfmt("%"PRIuMAX, (uintmax_t)buf_size); > + v->value = buf_size; > + v->s = xstrfmt("%"PRIuMAX, v->value); > } > continue; Interesting that typeof(.value) happens to be uintmax_t, keeping this a safe change.