From 15d26f98e6953d43eae6ffae68ca1e7ef8fb1870 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 2 Dec 2008 18:51:09 +0000 Subject: [PATCH] 2008-12-02 Joel Sherrill * libcsupport/src/ttyname.c: Correct prototype of ttyname_r() to use size_t for third parameter. --- cpukit/ChangeLog | 5 +++++ cpukit/libcsupport/src/ttyname.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 77a544c9a0..af023f4d87 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2008-12-02 Joel Sherrill + + * libcsupport/src/ttyname.c: Correct prototype of ttyname_r() to use + size_t for third parameter. + 2008-12-02 Joel Sherrill * libmisc/shell/main_cp.c, libmisc/shell/main_ls.c, diff --git a/cpukit/libcsupport/src/ttyname.c b/cpukit/libcsupport/src/ttyname.c index d483349235..59ea29be6e 100644 --- a/cpukit/libcsupport/src/ttyname.c +++ b/cpukit/libcsupport/src/ttyname.c @@ -59,9 +59,9 @@ static char ttyname_buf[sizeof (_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; * ttyname_r() - POSIX 1003.1b 4.7.2 - Demetermine Terminal Device Name */ int ttyname_r( - int fd, - char *name, - int namesize + int fd, + char *name, + size_t namesize ) { struct stat sb;