summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-07-27 13:54:59 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-07-27 13:54:59 +0200
commita7ccec3fefe1c01cf238a3c0931459a54c2ff3a3 (patch)
tree506e5988e57c73ff8810995834b7ad59c8b43816
parent1880d6addc275da4827a240e188bebd2d4cc3306 (diff)
downloadgmrf-a7ccec3fefe1c01cf238a3c0931459a54c2ff3a3.tar
gmrf-a7ccec3fefe1c01cf238a3c0931459a54c2ff3a3.zip
Fix data pointer type in packet_t
-rw-r--r--mmss/mmss.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mmss/mmss.hpp b/mmss/mmss.hpp
index 28f3ddd..d7202e7 100644
--- a/mmss/mmss.hpp
+++ b/mmss/mmss.hpp
@@ -121,7 +121,7 @@ public:
std::weak_ptr<iface_t> dest;
size_t len;
- std::unique_ptr<uint8_t> data;
+ std::unique_ptr<uint8_t[]> data;
};
class scheduled_t {