summaryrefslogtreecommitdiff
path: root/src/key.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/key.cc')
-rw-r--r--src/key.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/key.cc b/src/key.cc
index 8cac04a3..5e8211f4 100644
--- a/src/key.cc
+++ b/src/key.cc
@@ -68,7 +68,7 @@ Key::operator= (Key const & other)
if (this == &other) {
return *this;
}
-
+
memcpy (_value, other._value, ASDCP::KeyLen);
return *this;
}
@@ -77,7 +77,7 @@ string
Key::hex () const
{
stringstream g;
-
+
for (unsigned int i = 0; i < ASDCP::KeyLen; ++i) {
g << setw(2) << setfill('0') << std::hex << static_cast<int> (_value[i]);
}