summaryrefslogtreecommitdiffstats
path: root/services/audioflinger
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-07-19 10:32:41 -0700
committerGlenn Kasten <gkasten@google.com>2013-07-19 10:32:41 -0700
commit1b8ae3d9f3605fab7d14c323f2118ba3c769a42a (patch)
tree6ef5c082dd187c13cd961261227688e66597028c /services/audioflinger
parent20f4754b7e687d3718a0a0a585f2c9ac22e2567d (diff)
downloadframeworks_av-1b8ae3d9f3605fab7d14c323f2118ba3c769a42a.zip
frameworks_av-1b8ae3d9f3605fab7d14c323f2118ba3c769a42a.tar.gz
frameworks_av-1b8ae3d9f3605fab7d14c323f2118ba3c769a42a.tar.bz2
Fix compile warning
Change-Id: I80de4a013dc65eb7c532561438fd10e005354c03
Diffstat (limited to 'services/audioflinger')
-rw-r--r--services/audioflinger/AudioPolicyService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/AudioPolicyService.cpp b/services/audioflinger/AudioPolicyService.cpp
index eacecf0..07607e1 100644
--- a/services/audioflinger/AudioPolicyService.cpp
+++ b/services/audioflinger/AudioPolicyService.cpp
@@ -50,7 +50,7 @@ static const char kCmdDeadlockedString[] = "AudioPolicyService command thread ma
static const int kDumpLockRetries = 50;
static const int kDumpLockSleepUs = 20000;
-static const nsecs_t kAudioCommandTimeout = 3000000000; // 3 seconds
+static const nsecs_t kAudioCommandTimeout = 3000000000LL; // 3 seconds
namespace {
extern struct audio_policy_service_ops aps_ops;