1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 02:30:35 +02:00

(settime): Recode to avoid warning with Sun Forte C 6U2.

This commit is contained in:
Paul Eggert
2004-08-11 22:24:04 +00:00
parent c1dac962eb
commit 254e577b86
+2 -2
View File
@@ -67,8 +67,8 @@ settime (struct timespec const *ts)
#if HAVE_STIME
return stime (&ts->tv_sec);
#endif
#else
errno = ENOSYS;
return -1;
#endif
}