diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-07-11 19:02:50 -0400 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-10-08 05:01:18 -0400 |
commit | 2dfa8a6e56f63d2f6c479e7b65ef087e892280e9 (patch) | |
tree | 01be51b77f72b1b50f6ec940a5603cdeb38eac43 /fs/befs | |
parent | cfe0cb20e6fa09becc5e6f7597c6e2d1ed9ab7dd (diff) |
befs: fix typo in befs_bt_read_node documentation
Fixing a grammatical error in the documentation.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Diffstat (limited to 'fs/befs')
-rw-r--r-- | fs/befs/btree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/befs/btree.c b/fs/befs/btree.c index e8827af43dcd..97f5e242d3ab 100644 --- a/fs/befs/btree.c +++ b/fs/befs/btree.c | |||
@@ -181,8 +181,8 @@ befs_bt_read_super(struct super_block *sb, const befs_data_stream *ds, | |||
181 | * Calls befs_read_datastream to read in the indicated btree node and | 181 | * Calls befs_read_datastream to read in the indicated btree node and |
182 | * makes sure its header fields are in cpu byteorder, byteswapping if | 182 | * makes sure its header fields are in cpu byteorder, byteswapping if |
183 | * necessary. | 183 | * necessary. |
184 | * Note: node->bh must be NULL when this function called first | 184 | * Note: node->bh must be NULL when this function is called the first time. |
185 | * time. Don't forget brelse(node->bh) after last call. | 185 | * Don't forget brelse(node->bh) after last call. |
186 | * | 186 | * |
187 | * On success, returns BEFS_OK and *@node contains the btree node that | 187 | * On success, returns BEFS_OK and *@node contains the btree node that |
188 | * starts at @node_off, with the node->head fields in cpu byte order. | 188 | * starts at @node_off, with the node->head fields in cpu byte order. |