fix return types

I bet those two return types shoud be unsigned
pull/875/head
José Luis Cruz 4 years ago committed by GitHub
parent 7790913d2f
commit 7bd29c9c17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2382,12 +2382,12 @@ ncpixel_r(uint32_t pixel){
return (pixel & 0x000000fful);
}
static inline int
static inline unsigned
ncpixel_g(uint32_t pixel){
return (pixel & 0x00ff0000ul) >> 16u;
}
static inline int
static inline unsigned
ncpixel_b(uint32_t pixel){
return (pixel & 0x0000ff00ul) >> 8u;
}

Loading…
Cancel
Save