Fix some compilation errors introduced in the last commit
This commit is contained in:
parent
b526350baa
commit
eceac1612d
|
@ -712,7 +712,7 @@ int pipecommon_unlink(FAR struct inode *inode)
|
|||
FAR struct pipe_dev_s *dev;
|
||||
|
||||
DEBUGASSERT(inode && inode->i_private);
|
||||
dev = = (FAR struct pipe_dev_s *)inode->i_private;
|
||||
dev = (FAR struct pipe_dev_s *)inode->i_private;
|
||||
|
||||
/* Mark the pipe unlinked */
|
||||
|
||||
|
|
|
@ -134,6 +134,9 @@ extern "C" {
|
|||
# define EXTERN extern
|
||||
#endif
|
||||
|
||||
struct file; /* Forward reference */
|
||||
struct inode; /* Forware reference */
|
||||
|
||||
FAR struct pipe_dev_s *pipecommon_allocdev(void);
|
||||
void pipecommon_freedev(FAR struct pipe_dev_s *dev);
|
||||
int pipecommon_open(FAR struct file *filep);
|
||||
|
@ -145,7 +148,7 @@ int pipecommon_ioctl(FAR struct file *filep, int cmd, unsigned long arg);
|
|||
int pipecommon_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup);
|
||||
#endif
|
||||
int pipecommon_unlink(FAR void *priv);
|
||||
int pipecommon_unlink(FAR struct inode *priv);
|
||||
|
||||
#undef EXTERN
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in New Issue