summaryrefslogtreecommitdiffstats
path: root/testsuites/fstests/fssymlink
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-08 15:57:04 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-08 15:57:04 +0100
commit28860ec03c339eb936205cd7750b0e1584981521 (patch)
tree74d27523a1ac6def54c19f7322b1232ea73a4ea7 /testsuites/fstests/fssymlink
parentPOSIX conformance (diff)
downloadrtems-28860ec03c339eb936205cd7750b0e1584981521.tar.bz2
Fixed warnings and minor bugs
o Due to the usual integer propagation rules care must be taken in case off_t is involved. o Use the effective UID and GID consistently.
Diffstat (limited to 'testsuites/fstests/fssymlink')
-rw-r--r--testsuites/fstests/fssymlink/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/fstests/fssymlink/test.c b/testsuites/fstests/fssymlink/test.c
index 84329e2b98..e009907bd7 100644
--- a/testsuites/fstests/fssymlink/test.c
+++ b/testsuites/fstests/fssymlink/test.c
@@ -32,7 +32,7 @@
* Test the function of symlink
*/
-void symlink_test01(void )
+static void symlink_test01(void )
{
int fd;
char* file01="file";
@@ -128,7 +128,7 @@ void symlink_test01(void )
/*
* symlink loop error test
*/
-void symlink_loop_error_test(void )
+static void symlink_loop_error_test(void )
{
char* file01="file01";
char* file02="file02";