Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Fix builds where HAVE_MQUEUE_H isn't defined
Browse files Browse the repository at this point in the history
Android doesn't have <mqueue.h>.

* ipc.c (sys_mq_open) [!HAVE_MQUEUE_H]: Fix printaddr invocation.
  • Loading branch information
enh-google authored and ldv-alt committed Jul 28, 2015
1 parent afa10d8 commit e465343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipc.c
Expand Up @@ -342,7 +342,7 @@ SYS_FUNC(mq_open)
/* mode */
tprintf(", %#lo, ", tcp->u_arg[2]);
# ifndef HAVE_MQUEUE_H
printaddr(tcp, tcp->u_arg[3]);
printaddr(tcp->u_arg[3]);
# else
struct mq_attr attr;

Expand Down

0 comments on commit e465343

Please sign in to comment.