Build libraries with -Wall and -Werror.

This commit is contained in:
James Benton
2018-10-06 10:50:32 +01:00
parent 069e28acec
commit 857fcd8eea
7 changed files with 93 additions and 42 deletions

View File

@@ -36,7 +36,7 @@ __wut_fs_fixpath(struct _reent *r,
int
__wut_fs_translate_error(FSStatus error)
{
switch (error) {
switch ((int32_t)error) {
case FS_STATUS_END:
return ENOENT;
case FS_STATUS_CANCELLED: