From 382a976b49b290e92f372f70b5639caaa6401714 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Tue, 21 Jan 2003 17:56:10 +0000 Subject: [PATCH] Use fclose() on FILE* object svn path=/trunk/; revision=4049 --- reactos/tools/rtouch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/rtouch.c b/reactos/tools/rtouch.c index 2adf53c149b..ce1773c4704 100755 --- a/reactos/tools/rtouch.c +++ b/reactos/tools/rtouch.c @@ -66,7 +66,7 @@ int main(int argc, char* argv[]) } } - close(file); + fclose(file); #ifdef WIN32 now = time();