diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2007-02-20 18:39:45 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2007-02-20 18:39:45 +0000 |
| commit | 101c2433ffb7e5a9ee69e7403786617d8fbb8baf (patch) | |
| tree | 859f1d69b7490ccbec3b204e8493fb8fa09188da | |
| parent | 8ea59b412e4af50813545a836ed1c11ac00f541c (diff) | |
">" is ">", not "<" (which is "<")... :)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5700 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | documentation/advanced.html | 2 |
1 files changed, 1 insertions, 1 deletions
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.</P> int main() { Fl::lock(); /* run thread */ - while (Fl::wait() < 0) { + while (Fl::wait() > 0) { if (Fl::thread_message()) { /* process your data */ } |
