From 101c2433ffb7e5a9ee69e7403786617d8fbb8baf Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 20 Feb 2007 18:39:45 +0000 Subject: ">" is ">", not "<" (which is "<")... :) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5700 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/advanced.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'documentation') diff --git a/documentation/advanced.html b/documentation/advanced.html index 51a7482fe..f7623435b 100644 --- a/documentation/advanced.html +++ b/documentation/advanced.html @@ -21,7 +21,7 @@ that will help you to get the most out of FLTK.

int main() { Fl::lock(); /* run thread */ - while (Fl::wait() < 0) { + while (Fl::wait() > 0) { if (Fl::thread_message()) { /* process your data */ } -- cgit v1.2.3