summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-08-13 00:32:32 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-08-13 00:32:32 +0000
commit3169482b6c251e6c532b96c7af5ce2b181660706 (patch)
tree64ce64ae4b8c16dc5a3428e16bf51a1c1d6f58cf /nuttx/ChangeLog
parentb796f476c1dc59a2f063181b65648993b3e1a858 (diff)
downloadnuttx-3169482b6c251e6c532b96c7af5ce2b181660706.tar.gz
nuttx-3169482b6c251e6c532b96c7af5ce2b181660706.tar.bz2
nuttx-3169482b6c251e6c532b96c7af5ce2b181660706.zip
Fix read()/write() prototype
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@820 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 98ecf7778..6378c34ce 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -402,4 +402,6 @@
* Removed duplicate getenv() implementation in /lib
* Correct detection of End-of-File in fgets
* Implement sh and crude script handler in NSH
+ * Fix prototype of read() and write(). Need to use ssize_t and size_t, not
+ int and unsigned int.