Merge pull request #875 from dankamongmen/joseluis-patch-1

fix return types
This commit is contained in:
Nick Black 2020-08-11 16:46:51 -04:00 committed by GitHub
commit 0c935d0aea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2387,13 +2387,13 @@ ncpixel_r(uint32_t pixel){
}
// Extract the 8 bit green component from a pixel
static inline int
static inline unsigned
ncpixel_g(uint32_t pixel){
return (pixel & 0x00ff0000ul) >> 16u;
}
// Extract the 8 bit blue component from a pixel
static inline int
static inline unsigned
ncpixel_b(uint32_t pixel){
return (pixel & 0x0000ff00ul) >> 8u;
}