diff options
| author | Javier <dev.git@javispedro.com> | 2014-12-01 02:21:30 +0100 |
|---|---|---|
| committer | Javier <dev.git@javispedro.com> | 2014-12-01 02:21:30 +0100 |
| commit | 1e3794c476caf5c41360c36cc13c8425ec0dd26c (patch) | |
| tree | f86693c5e17671f821871f95e462f299170277e0 /daemon/unpacker.cpp | |
| parent | cf405034b49e5e8ba7a8d22522878c8834b8d4ae (diff) | |
implement message passing around jskit apps and watch
Diffstat (limited to 'daemon/unpacker.cpp')
| -rw-r--r-- | daemon/unpacker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/unpacker.cpp b/daemon/unpacker.cpp index fc38020..e904db8 100644 --- a/daemon/unpacker.cpp +++ b/daemon/unpacker.cpp @@ -29,7 +29,7 @@ QMap<int, QVariant> Unpacker::readDict() QMap<int, QVariant> d; if (checkBad(1)) return d; - const int n = read<quint8>(); + const int n = readLE<quint8>(); for (int i = 0; i < n; i++) { if (checkBad(4 + 1 + 2)) return d; |
