diff options
| author | Stephen Hines <srhines@google.com> | 2012-08-08 16:02:47 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2012-08-08 16:02:47 -0700 |
| commit | 67bdfa9823dd954fdfaa01721da17d8252fc05d1 (patch) | |
| tree | ea7b4ce596524459d8e7ea6e79fad814947297e1 | |
| parent | d2e826b5192f3b964c893b8230cee1d8bdb84071 (diff) | |
| parent | d25b8502ea2c1294c0afab97bf7f14fbd2087efd (diff) | |
| download | system_core-67bdfa9823dd954fdfaa01721da17d8252fc05d1.tar.gz system_core-67bdfa9823dd954fdfaa01721da17d8252fc05d1.tar.bz2 system_core-67bdfa9823dd954fdfaa01721da17d8252fc05d1.zip | |
am d25b8502: Merge "Fix unused param warning"
* commit 'd25b8502ea2c1294c0afab97bf7f14fbd2087efd':
Fix unused param warning
| -rw-r--r-- | libsuspend/autosuspend_wakeup_count.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsuspend/autosuspend_wakeup_count.c b/libsuspend/autosuspend_wakeup_count.c index b038e20f..a88e6770 100644 --- a/libsuspend/autosuspend_wakeup_count.c +++ b/libsuspend/autosuspend_wakeup_count.c @@ -38,7 +38,7 @@ static pthread_t suspend_thread; static sem_t suspend_lockout; static const char *sleep_state = "mem"; -static void *suspend_thread_func(void *arg) +static void *suspend_thread_func(void *arg __attribute__((unused))) { char buf[80]; char wakeup_count[20]; |
