Fix a few typos in the last commit

This commit is contained in:
Gregory Nutt 2016-07-19 13:40:54 -06:00
parent d6bf67f9ff
commit 9a44f3017b
3 changed files with 4 additions and 2 deletions

View File

@ -157,7 +157,7 @@ FAR struct pipe_dev_s *pipecommon_allocdev(size_t bufsize)
{
FAR struct pipe_dev_s *dev;
DEBUGASSERT(bufsize <= CONFIG_DEV_PIPE_MAXSIZE)
DEBUGASSERT(bufsize <= CONFIG_DEV_PIPE_MAXSIZE);
/* Allocate a private structure to manage the pipe */

View File

@ -158,7 +158,8 @@ struct pipe_dev_s
#ifdef __cplusplus
# define EXTERN extern "C"
extern "C" {
extern "C"
{
#else
# define EXTERN extern
#endif

View File

@ -9,6 +9,7 @@ menu "Unix Domain Socket Support"
config NET_LOCAL
bool "Unix domain (local) sockets"
default n
select PIPES
---help---
Enable or disable Unix domain (aka Local) sockets.