fix fputs build warning

This commit is contained in:
pjht 2019-08-28 20:33:27 -05:00
parent b5b2703cd2
commit f92f5f784d

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=s;
msg.msg=(char*)s;
msg.size=strlen(s);
mailbox_send_msg(&msg);
yieldToPID(VFS_PID);