blob/blobmsg: Perform explicit casts from void* to avoid compilation errors when using libubox from C++.
Signed-off by: Jacob Siverskog <jacob@teenageengineering.com>
This commit is contained in:
parent
f32a53f92b
commit
4436338588
2 changed files with 4 additions and 4 deletions
2
blob.h
2
blob.h
|
@ -144,7 +144,7 @@ blob_get_u32(const struct blob_attr *attr)
|
|||
static inline uint64_t
|
||||
blob_get_u64(const struct blob_attr *attr)
|
||||
{
|
||||
uint32_t *ptr = blob_data(attr);
|
||||
uint32_t *ptr = (uint32_t *) blob_data(attr);
|
||||
uint64_t tmp = ((uint64_t) be32_to_cpu(ptr[0])) << 32;
|
||||
tmp |= be32_to_cpu(ptr[1]);
|
||||
return tmp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue