fix fputs build error

This commit is contained in:
pjht 2019-08-28 20:32:48 -05:00
parent bc5a9d6879
commit b5b2703cd2

View File

@ -95,7 +95,7 @@ int fputs(const char* s, FILE* stream) {
msg.msg=msg_data;
msg.size=sizeof(vfs_message);
mailbox_send_msg(&msg);
msg.msg=buffer;
msg.msg=s;
msg.size=strlen(s);
mailbox_send_msg(&msg);
yieldToPID(VFS_PID);