summaryrefslogtreecommitdiff
path: root/nuttx/fs/fs_openblockdriver.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/fs_openblockdriver.c')
-rw-r--r--nuttx/fs/fs_openblockdriver.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/fs/fs_openblockdriver.c b/nuttx/fs/fs_openblockdriver.c
index 62b33bee7..c59a255b0 100644
--- a/nuttx/fs/fs_openblockdriver.c
+++ b/nuttx/fs/fs_openblockdriver.c
@@ -2,7 +2,7 @@
* fs/fs_openblockdriver.c
*
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in pathname and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -76,14 +76,15 @@
*
****************************************************************************/
-int open_blockdriver(FAR const char *pathname, int mountflags, FAR struct inode **ppinode)
+int open_blockdriver(FAR const char *pathname, int mountflags,
+ FAR struct inode **ppinode)
{
FAR struct inode *inode;
int ret;
/* Minimal sanity checks */
-#ifdef CONFIG_DEBUG
+#ifdef CONFIG_DEBUG
if (!ppinode)
{
ret = -EINVAL;