summaryrefslogtreecommitdiff
path: root/src/com/android
diff options
context:
space:
mode:
authorPierre Frojd <pierre.frojd@sonyericsson.com>2010-10-05 17:57:33 +0200
committerJohan Redestig <johan.redestig@sonyericsson.com>2011-01-04 07:44:11 +0100
commitc2400dfd02c7209213474f0a82865a63d2a8b2e0 (patch)
tree82160035342f4008f9c76cdfaf8acce5930d06af /src/com/android
parentfdf7d8e43952c5cbf09c6e22fb5fbfaaea626f93 (diff)
downloadStk-c2400dfd02c7209213474f0a82865a63d2a8b2e0.tar.gz
Fix missinterpretation of tenth-of-second
When the PLAY TONE command from Sim tool kit has a duration time with the time unit of "Tenth of seconds", this is missinterpreted by StkApp as "Ten times seconds". See 3GPP TS 11.14 page 113. Change-Id: If7123f894f5476258aa5b94ba99460d8778c75f1
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/stk/StkApp.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/stk/StkApp.java b/src/com/android/stk/StkApp.java
index 0b1f208..0f0af52 100644
--- a/src/com/android/stk/StkApp.java
+++ b/src/com/android/stk/StkApp.java
@@ -52,7 +52,7 @@ abstract class StkApp extends Application {
timeout = 1000 * 60;
break;
case TENTH_SECOND:
- timeout = 1000 * 10;
+ timeout = 1000 / 10;
break;
case SECOND:
default: