On Mon, Apr 29, 2019 at 05:23:49AM -0600, Jan Beulich wrote: > Don't log a stray trailing comma. Shorten a few fields. > > Signed-off-by: Jan Beulich <[email protected]>
Reviewed-by: Roger Pau Monné <[email protected]> > - for ( i = 0; i < action->nr_guests; i++ ) > + for ( i = 0; i < action->nr_guests; ) > { > - d = action->guest[i]; > + d = action->guest[i++]; Per my taste I would leave the increment in the for, but it's just taste. _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
