Skip to content
Snippets Groups Projects
Commit c2b65937 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Fix cast in BDB_ID2DISK(): unsigned char *_p ... = (char *)...;

parent ae3ef7b3
No related branches found
No related tags found
No related merge requests found
......@@ -265,7 +265,7 @@ struct bdb_op_info {
/* Copy an ID "src" to pointer "dst" in big-endian byte order */
#define BDB_ID2DISK( src, dst ) \
do { int i0; ID tmp; unsigned char *_p; \
tmp = (src); _p = (char *)(dst); \
tmp = (src); _p = (unsigned char *)(dst); \
for ( i0=sizeof(ID)-1; i0>=0; i0-- ) { \
_p[i0] = tmp & 0xff; tmp >>= 8; \
} \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment