summaryrefslogtreecommitdiff
path: root/nuttx/libc
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-27 16:24:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-27 16:24:45 +0000
commit68a797def39476f4cfe5764a364bba719d85a797 (patch)
treefebbd6f10aed6cdfebfeb85c3dc309ad2d745153 /nuttx/libc
parent6831c49a517bfe90b75a732b1d39ce303960c023 (diff)
downloadpx4-nuttx-68a797def39476f4cfe5764a364bba719d85a797.tar.gz
px4-nuttx-68a797def39476f4cfe5764a364bba719d85a797.tar.bz2
px4-nuttx-68a797def39476f4cfe5764a364bba719d85a797.zip
Fixes to get SDRAM working on the Open1788. Works but is not reliable
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5794 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/libc')
-rw-r--r--nuttx/libc/string/lib_strtoul.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/nuttx/libc/string/lib_strtoul.c b/nuttx/libc/string/lib_strtoul.c
index 8f27ae3f2..62a768043 100644
--- a/nuttx/libc/string/lib_strtoul.c
+++ b/nuttx/libc/string/lib_strtoul.c
@@ -93,6 +93,7 @@ unsigned long strtoul(const char *nptr, char **endptr, int base)
*endptr = (char *)nptr;
}
}
+
return accum;
}