UI: Add missing return statement

This commit is contained in:
Dmitry-Me 2018-08-01 11:04:25 +03:00
parent 6905b22c5f
commit a5eb2b8e7e

View File

@ -324,6 +324,8 @@ struct update_t {
memcpy(hash, from.hash, sizeof(hash));
memcpy(downloadhash, from.downloadhash, sizeof(downloadhash));
memcpy(my_hash, from.my_hash, sizeof(my_hash));
return *this;
}
};