* serial.c (serial_open): Fix the OPEN parameter macro expansion.
+2007-08-08 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ * serial.c (serial_open): Fix the OPEN parameter macro expansion.
+
2007-08-08 Michael Snyder <msnyder@access-company.com>
* target.c (target_read_string): Guard against null.
scb->bufp = scb->buf;
scb->error_fd = -1;
- if (scb->ops->open (scb, open_name))
+ /* `...->open (...)' would get expanded by an the open(2) syscall macro. */
+ if ((*scb->ops->open) (scb, open_name))
{
xfree (scb);
return NULL;