Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
cc74f3ad
Commit
cc74f3ad
authored
Jun 12, 2013
by
Mark Andrews
Browse files
silence compiler warning
parent
8e15d5eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/isc/crc64.c
View file @
cc74f3ad
...
...
@@ -129,7 +129,7 @@ isc_crc64_update(isc_uint64_t *crc, const void *data, size_t len) {
REQUIRE
(
crc
!=
NULL
);
REQUIRE
(
data
!=
NULL
);
while
(
len
--
>
0
)
{
while
(
len
--
>
0
U
)
{
i
=
((
int
)
(
*
crc
>>
56
)
^
*
p
++
)
&
0xff
;
*
crc
=
crc64_table
[
i
]
^
(
*
crc
<<
8
);
}
...
...
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