diff options
author | Stephen Hines <srhines@google.com> | 2012-08-08 15:27:45 -0700 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-08-08 15:27:45 -0700 |
commit | d25b8502ea2c1294c0afab97bf7f14fbd2087efd (patch) | |
tree | c016edc105ab817758d85cc9b8be255822f56743 | |
parent | 65c37c81ba64f7ec803dcec976a768d3aac9e6c3 (diff) | |
parent | 62f9ffac1aa4809c0acd29dc4c4872a3b4da2062 (diff) | |
download | system_core-d25b8502ea2c1294c0afab97bf7f14fbd2087efd.zip system_core-d25b8502ea2c1294c0afab97bf7f14fbd2087efd.tar.gz system_core-d25b8502ea2c1294c0afab97bf7f14fbd2087efd.tar.bz2 |
Merge "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 b038e20..a88e677 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]; |