summaryrefslogtreecommitdiff
path: root/halimpl
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2014-10-03 09:33:49 -0700
committerChih-hung Hsieh <chh@google.com>2014-10-10 16:04:39 +0000
commit6d45985bdca7bf44c60160e518d296b68c7a0020 (patch)
treecbc161f97c2daf92d3d1d80a4a7f361f2e6fbd3b /halimpl
parentefd44c45f6f9cd3eb1735d6b798d2cc7913eb515 (diff)
downloadlibnfc-nci-6d45985bdca7bf44c60160e518d296b68c7a0020.tar.gz
Fix Clang compilation errors.
Change-Id: I4d060936f848d0fbdf01bb16098291babf96d648
Diffstat (limited to 'halimpl')
-rw-r--r--halimpl/bcm2079x/gki/ulinux/gki_ulinux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/halimpl/bcm2079x/gki/ulinux/gki_ulinux.c b/halimpl/bcm2079x/gki/ulinux/gki_ulinux.c
index 2f98e63..30ecf91 100644
--- a/halimpl/bcm2079x/gki/ulinux/gki_ulinux.c
+++ b/halimpl/bcm2079x/gki/ulinux/gki_ulinux.c
@@ -490,7 +490,7 @@ void GKI_run (void *p_task_id)
{
GKI_TRACE_1("%s enter", __func__);
int retval = EACCES;
- static pthread_t workerThreadId = NULL;
+ static pthread_t workerThreadId = 0;
retval = pthread_create (&workerThreadId, NULL, GKI_run_worker_thread, NULL);
if (retval != 0)