This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Patch for PR 9399


>>>>> "Chris" == Chris Moller <cmoller@redhat.com> writes:

Chris> +  if ((TYPE_NAME (t1) != NULL)
Chris> +      && (TYPE_NAME (t2) != NULL)

There are too many parens here.
It should be

  if (TYPE_NAME (t1) != NULL
      && TYPE_NAME (t2) != NULL
      ...

You don't have to resubmit this, just fix it and check it in.

thanks,
Tom


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]