Commit 1e1506a2 authored by Ian Lance Taylor's avatar Ian Lance Taylor

libbio: add casts to eliminate -Wconversion warning

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/87140044
parent 41ff456f
......@@ -83,7 +83,7 @@ Bgetle4(Biobuf *bp)
l = Bgetle2(bp);
h = Bgetle2(bp);
return l|((uint32)h<<16);
return (int)((uint32)l|((uint32)h<<16));
}
int
......
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