On 29/07/2025 12:01 pm, Juergen Gross wrote: > diff --git a/tools/xenstored/lu.c b/tools/xenstored/lu.c > index 77e0d377c5..f2c8b92d07 100644 > --- a/tools/xenstored/lu.c > +++ b/tools/xenstored/lu.c > @@ -27,9 +27,11 @@ struct live_update *lu_status; > > struct lu_dump_state { > void *buf; > + unsigned int buf_size; > unsigned int size; > - int fd; > + unsigned int offset; > char *filename; > + FILE *fp;
I know there's already one unsigned int size here, but life is too short to not use size_t from the get-go. ~Andrew