Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
e74fa927
Commit
e74fa927
authored
Sep 09, 2015
by
Thomas Jahns
🤸
Browse files
Fix pointless conversion.
parent
d324c81d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/serialize.h
View file @
e74fa927
...
...
@@ -78,7 +78,7 @@ serializeStrTabUnpack(const void *buf, int buf_size, int *position,
serializeUnpack
(
buf
,
buf_size
,
position
,
strTab
[
i
],
len
,
DATATYPE_TXT
,
context
);
strTab
[
i
][
len
]
=
'\0'
;
d2
^=
cdiCheckSum
(
DATATYPE_TXT
,
(
size_t
)
len
,
strTab
[
i
]);
d2
^=
cdiCheckSum
(
DATATYPE_TXT
,
len
,
strTab
[
i
]);
}
serializeUnpack
(
buf
,
buf_size
,
position
,
&
d
,
1
,
DATATYPE_UINT32
,
context
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment