summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-07 18:37:10 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-07 18:37:10 (GMT)
commitce6f68d3a24759b9758ee0c5c2486ea53a1827af (patch)
tree479272d5c4959e77d1339d2a3c3ba4563b2ef115 /src/uscxml/Message.cpp
parent9ce1655e4db76e9a9a5db7b97fb0317d2c4d49ae (diff)
downloaduscxml-ce6f68d3a24759b9758ee0c5c2486ea53a1827af.zip
uscxml-ce6f68d3a24759b9758ee0c5c2486ea53a1827af.tar.gz
uscxml-ce6f68d3a24759b9758ee0c5c2486ea53a1827af.tar.bz2
Fixed JSON in content
Diffstat (limited to 'src/uscxml/Message.cpp')
-rw-r--r--src/uscxml/Message.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/Message.cpp b/src/uscxml/Message.cpp
index 3ada20c..65a66ce 100644
--- a/src/uscxml/Message.cpp
+++ b/src/uscxml/Message.cpp
@@ -189,7 +189,7 @@ Data Data::fromJSON(const std::string& jsonString) {
// we do not know the number of tokens beforehand, start with something sensible and increase
int rv;
- int frac = 32; // this will get decreased to 16 to first iteration for 1/16 length/token ratio
+ int frac = 16; // this will get decreased to 16 to first iteration for 1/16 length/token ratio
do {
jsmn_init(&p);