summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-05-28 06:18:27 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-05-28 06:18:27 +0000
commitbd6515bea4e8fea5ee7f7847ef62971aa5123197 (patch)
treecca162d82bc1946c4d8b6741cc22ab771e4892c4 /c
parent2010-05-28 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-bd6515bea4e8fea5ee7f7847ef62971aa5123197.tar.bz2
2010-05-28 Ralf Corsépius <ralf.corsepius@rtems.org>
* umon/tfsDriver.c: Use size_t instead of int for pathnamelen.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/shared/ChangeLog5
-rw-r--r--c/src/lib/libbsp/shared/umon/tfsDriver.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/shared/ChangeLog b/c/src/lib/libbsp/shared/ChangeLog
index cef67f0065..26054af2f5 100644
--- a/c/src/lib/libbsp/shared/ChangeLog
+++ b/c/src/lib/libbsp/shared/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-28 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * umon/tfsDriver.c:
+ Use size_t instead of int for pathnamelen.
+
2010-05-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
* include/utility.h: Macros use now first and last bit values instead
diff --git a/c/src/lib/libbsp/shared/umon/tfsDriver.c b/c/src/lib/libbsp/shared/umon/tfsDriver.c
index a390d791e0..ceccb63fce 100644
--- a/c/src/lib/libbsp/shared/umon/tfsDriver.c
+++ b/c/src/lib/libbsp/shared/umon/tfsDriver.c
@@ -241,7 +241,7 @@ static void fixPath(char *path)
static int rtems_tfs_eval_path(
const char *pathname,
- int pathnamelen,
+ size_t pathnamelen,
int flags,
rtems_filesystem_location_info_t *pathloc
)