summaryrefslogtreecommitdiff
path: root/include/fs.h
diff options
context:
space:
mode:
authorRamesh Thomas <ramesh.thomas@intel.com>2016-08-05 13:42:58 -0700
committerInaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>2016-08-05 23:14:25 +0000
commit5013d521d367db1c826d292c68c011ba7c951167 (patch)
treebb51088edbad2834b5b4c3f3a9b307c2cb6abcfe /include/fs.h
parentdf22e226f0aa136a9aece1238e5f514edf2c49b7 (diff)
doc: Fixes a typo in the file system documentation
SEE_CUR -> SEEK_CUR Change-Id: I62bba618bb942489e01e66e01d5f4806122a4e21 Signed-off-by: Ramesh Thomas <ramesh.thomas@intel.com>
Diffstat (limited to 'include/fs.h')
-rw-r--r--include/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fs.h b/include/fs.h
index 0fe934aa1..4cd8ba34c 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -175,7 +175,7 @@ ssize_t fs_write(ZFILE *zfp, const void *ptr, size_t size);
* @param offset Relative location to move the file pointer to
* @param whence Relative location from where offset is to be calculated.
* - SEEK_SET = from beginning of file
- * - SEE_CUR = from current position,
+ * - SEEK_CUR = from current position,
* - SEEK_END = from end of file.
*
* @retval 0 Success