2010-07-02 Joel Sherrill <joel.sherrill@oarcorp.com>

* psx13/test.c: Fix warning.
This commit is contained in:
Joel Sherrill
2010-07-02 18:51:48 +00:00
parent b3eb018574
commit 2da9a31ae2
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2010-07-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* psx13/test.c: Fix warning.
2010-07-02 Joel Sherrill <joel.sherrill@oarcorp.com> 2010-07-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxfile01/test_cat.c: Does not need posix specific macros. * psxfile01/test_cat.c: Does not need posix specific macros.

View File

@@ -466,7 +466,7 @@ int UTimesTest (void)
time[0].tv_sec = 12345; time[0].tv_sec = 12345;
time[1].tv_sec = 54321; time[1].tv_sec = 54321;
error = utimes("testfile1.tst", &time); error = utimes("testfile1.tst", (struct timeval *)&time);
if (error == 0) { if (error == 0) {