commit | d25b8502ea2c1294c0afab97bf7f14fbd2087efd | [log] [tgz] |
---|---|---|
author | Stephen Hines <srhines@google.com> | Wed Aug 08 15:27:45 2012 -0700 |
committer | android code review <noreply-gerritcodereview@google.com> | Wed Aug 08 15:27:45 2012 -0700 |
tree | c016edc105ab817758d85cc9b8be255822f56743 | |
parent | 65c37c81ba64f7ec803dcec976a768d3aac9e6c3 [diff] | |
parent | 62f9ffac1aa4809c0acd29dc4c4872a3b4da2062 [diff] |
Merge "Fix unused param warning"
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 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];