Commit 70732a22 authored by Lev Walkin's avatar Lev Walkin

remove warning

parent 85325924
...@@ -120,7 +120,7 @@ OBJECT_IDENTIFIER_get_single_arc(uint8_t *arcbuf, unsigned int arclen, signed in ...@@ -120,7 +120,7 @@ OBJECT_IDENTIFIER_get_single_arc(uint8_t *arcbuf, unsigned int arclen, signed in
errno = ERANGE; /* Overflow */ errno = ERANGE; /* Overflow */
return -1; return -1;
} }
*(unsigned long *)rvbuf = accum + add; /* alignment OK! */ *(unsigned long *)(void *)rvbuf = accum + add; /* alignment OK! */
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment