From abeaa5d5616187ea6dd016e154523dad63f837f1 Mon Sep 17 00:00:00 2001 From: Abdulaziz Ghuloum Date: Sun, 16 Nov 2008 04:37:17 -0500 Subject: [PATCH] fixed simple typo in ikarus-io.c --- scheme/last-revision | 2 +- src/ikarus-io.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scheme/last-revision b/scheme/last-revision index 6c19a26..505c5cc 100644 --- a/scheme/last-revision +++ b/scheme/last-revision @@ -1 +1 @@ -1683 +1684 diff --git a/src/ikarus-io.c b/src/ikarus-io.c index 898f0d4..86f7084 100644 --- a/src/ikarus-io.c +++ b/src/ikarus-io.c @@ -313,7 +313,7 @@ ikrt_file_ctime2(ikptr filename, ikpcb* pcb){ struct timespec ts; ts.tv_sec = s.st_ctime; ts.tv_nsec = 0; - return timespec_bytevector(&st, pcb); + return timespec_bytevector(&ts, pcb); #endif } @@ -332,7 +332,7 @@ ikrt_file_mtime2(ikptr filename, ikpcb* pcb){ struct timespec ts; ts.tv_sec = s.st_mtime; ts.tv_nsec = 0; - return timespec_bytevector(&st, pcb); + return timespec_bytevector(&ts, pcb); #endif }