From 27643e03366da4908a5aad0c5d0b272909eb78de Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 17 Dec 2009 20:26:09 +0000 Subject: 2009-12-17 Joel Sherrill * libcsupport/src/termios.c, libfs/src/dosfs/msdos_format.c, libfs/src/nfsclient/src/nfs.c, libfs/src/pipe/fifo.c, libnetworking/lib/rtems_bsdnet_ntp.c, libnetworking/lib/tftpDriver.c, libnetworking/rtems/rtems_glue.c, libnetworking/rtems/rtems_select.c: Eliminate uses of deprecated rtems_clock_get() and replace with properly typed routine. --- cpukit/libfs/src/pipe/fifo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/libfs/src/pipe/fifo.c') diff --git a/cpukit/libfs/src/pipe/fifo.c b/cpukit/libfs/src/pipe/fifo.c index 846874b080..8f3fe82ddc 100644 --- a/cpukit/libfs/src/pipe/fifo.c +++ b/cpukit/libfs/src/pipe/fifo.c @@ -560,6 +560,6 @@ void rtems_pipe_initialize (void) rtems_fatal_error_occurred (sc); rtems_interval now; - rtems_clock_get(RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, &now); + now = rtems_clock_get_ticks_since_boot(); rtems_pipe_no = now; } -- cgit v1.2.3