aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2018-11-28 16:32:50 +0200
committerAvi Levkovich <avi@twine-s.com>2018-11-28 16:32:50 +0200
commit979119f4a7e44af9ba1426fe2f5afd4d3f859b18 (patch)
tree36a132373d7d1c7079b921ceb33e7d23c3826eb3 /Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
parent878d136432b7cdbc28e7c63d6d586d0d0efa7a14 (diff)
downloadTango-979119f4a7e44af9ba1426fe2f5afd4d3f859b18.tar.gz
Tango-979119f4a7e44af9ba1426fe2f5afd4d3f859b18.zip
fix typo in getErrorCode
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c')
-rw-r--r--Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
index 3d23f9e48..3a6a6f924 100644
--- a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
+++ b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
@@ -51,7 +51,7 @@ ErrorCode getErrorCode(FRESULT Fresult)
switch (Fresult)
{
case FR_OK:
- retrun ERROR_CODE_NONE;
+ return ERROR_CODE__NONE;
default:
return ERROR_CODE__FILE_LENGTH_OUT_OF_RANGE;
}