Trim trailing white space in CHANGELOG

This commit is contained in:
Crayon2000 2018-07-02 12:57:53 -04:00
parent c8f46d99aa
commit da04731fec
2 changed files with 9 additions and 8 deletions

View file

@ -62,7 +62,8 @@ int GRRLIB_LoadFile(const char* filename, unsigned char* *data) {
if ( fread(*data, 1, len, fd) != len) { if ( fread(*data, 1, len, fd) != len) {
fclose(fd); fclose(fd);
free(*data); *data = NULL; free(*data);
*data = NULL;
return -3; return -3;
} }