From ea867f2ae30c9950dd9d580deef373ea528f0508 Mon Sep 17 00:00:00 2001 From: hermet Date: Wed, 5 Oct 2011 11:13:06 +0000 Subject: [PATCH] elementary/exmaples - fixed typo git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@63838 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/examples/efl_thread_4.c | 2 +- src/examples/efl_thread_5.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples/efl_thread_4.c b/src/examples/efl_thread_4.c index b3fd4fd..2eee3b7 100644 --- a/src/examples/efl_thread_4.c +++ b/src/examples/efl_thread_4.c @@ -40,7 +40,7 @@ my_thread_run(void *arg) // and sleep and loop usleep(1000); t += 0.02; - // in case someone has asked us to cancel - then cacnel this loop + // in case someone has asked us to cancel - then cancel this loop // co-operatively (cancelling is co-operative) pthread_mutex_lock(&th_lock); do_exit = th_exit; diff --git a/src/examples/efl_thread_5.c b/src/examples/efl_thread_5.c index 0edeeee..7b3db3a 100644 --- a/src/examples/efl_thread_5.c +++ b/src/examples/efl_thread_5.c @@ -33,7 +33,7 @@ th_do(void *data, Ecore_Thread *th) // and sleep and loop usleep(1000); t += 0.02; - // in case someone has asked us to cancel - then cacnel this loop + // in case someone has asked us to cancel - then cancel this loop // co-operatively (cancelling is co-operative) if (ecore_thread_check(th)) break; } -- 2.7.4