Fix thinko in MSP430 libgloss implementation of write() system call.

This commit is contained in:
Martin Young 2017-05-26 11:35:13 +01:00 committed by Nick Clifton
parent 9b7bbd0313
commit 780503f6ac
1 changed files with 1 additions and 1 deletions

View File

@ -55,5 +55,5 @@ write (int fd, char *buf, int len)
len -= l;
buf += l;
}
return c;
return rv;
}