summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx13/test.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-02 18:51:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-02 18:51:48 +0000
commit2da9a31ae270c8366a6b0020c18080a54885d4ea (patch)
tree3098f92f1dde25d6fb3a2fd7de93b397ceb2ba63 /testsuites/psxtests/psx13/test.c
parent2010-07-02 Bharath Suri <bharath.s.jois@gmail.com> (diff)
downloadrtems-2da9a31ae270c8366a6b0020c18080a54885d4ea.tar.bz2
2010-07-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* psx13/test.c: Fix warning.
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psx13/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psx13/test.c b/testsuites/psxtests/psx13/test.c
index 0f37b584b3..eceb696907 100644
--- a/testsuites/psxtests/psx13/test.c
+++ b/testsuites/psxtests/psx13/test.c
@@ -466,7 +466,7 @@ int UTimesTest (void)
time[0].tv_sec = 12345;
time[1].tv_sec = 54321;
- error = utimes("testfile1.tst", &time);
+ error = utimes("testfile1.tst", (struct timeval *)&time);
if (error == 0) {