Remove carriage returns from files

This commit is contained in:
Gregory Nutt
2016-01-23 15:26:10 -06:00
parent accd99db25
commit c36c49657b
3 changed files with 235 additions and 235 deletions
+1 -1
Submodule arch updated: 10e420a652...244343293f
+1 -1
Submodule configs updated: 5f36fcd26e...06c7256f4e
+2 -2
View File
@@ -181,7 +181,7 @@ uint32_t nxglib_rgb24_blend(uint32_t color1, uint32_t color2, ub16_t frac1)
/* Recombine and return the blended value */
return RGBTO24(r,g,b) ;
return RGBTO24(r,g,b);
}
#endif
@@ -227,7 +227,7 @@ uint16_t nxglib_rgb565_blend(uint16_t color1, uint16_t color2, ub16_t frac1)
/* Recombine and return the blended value */
return RGBTO24(r,g,b) ;
return RGBTO24(r,g,b);
}
#endif