On 10/23/2014 09:39 AM, arei.gong...@huawei.com wrote: [] > --- a/vl.c > +++ b/vl.c > @@ -4318,7 +4318,7 @@ int main(int argc, char **argv, char **envp) > if (vnc_display) { > Error *local_err = NULL; > vnc_display_init(ds); > - vnc_display_open(ds, vnc_display, &local_err); > + vnc_display_open(vnc_display, &local_err); > if (local_err != NULL) {
So why do you make the two display-initing functions assymetric? Why one of them expects a `ds' argument (it is called from just one place, and this is THE place), while you remove this arg from another? Maybe we should remove the ds arg from both (and clean up the variable in question from main() too -- why it is declared at the start of main() anyway, instead of this very place like local_err is?) Thanks, /mjt