diff options
author | Glenn Kasten <gkasten@google.com> | 2013-07-22 14:43:19 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-07-22 14:43:20 +0000 |
commit | 18cf609ca3f20a9da2c7e140088d7557e7479f49 (patch) | |
tree | 0782d67b426a8e4a03721abab2f85878e1f2d0d8 /services | |
parent | 288abb6fe160dff109dedbf89b227fc2b10a2ee8 (diff) | |
parent | 1b8ae3d9f3605fab7d14c323f2118ba3c769a42a (diff) | |
download | frameworks_av-18cf609ca3f20a9da2c7e140088d7557e7479f49.zip frameworks_av-18cf609ca3f20a9da2c7e140088d7557e7479f49.tar.gz frameworks_av-18cf609ca3f20a9da2c7e140088d7557e7479f49.tar.bz2 |
Merge "Fix compile warning"
Diffstat (limited to 'services')
-rw-r--r-- | services/audioflinger/AudioPolicyService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/AudioPolicyService.cpp b/services/audioflinger/AudioPolicyService.cpp index d192787..fa1e405 100644 --- a/services/audioflinger/AudioPolicyService.cpp +++ b/services/audioflinger/AudioPolicyService.cpp @@ -51,7 +51,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; |