From 5e28fcc6abc953d1586647b0b7dd5048f767e16a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 16 Oct 2001 11:34:30 +0000 Subject: [PATCH] Fixed nanosleep function sig test. [SVN r11389] --- test/boost_has_nanosleep.ipp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/boost_has_nanosleep.ipp b/test/boost_has_nanosleep.ipp index 758fbc93..934cc4d9 100644 --- a/test/boost_has_nanosleep.ipp +++ b/test/boost_has_nanosleep.ipp @@ -16,7 +16,8 @@ void f() { // this is never called, it just has to compile: timespec ts = {0}; - int res = nanosleep(&ts); + timespec rm; + int res = nanosleep(&ts, &rm); } int test()