mirror of
https://github.com/thewesker/RASCSI.git
synced 2025-12-23 13:51:09 -05:00
Updated to allow command handler to run on x86 systems for development purposes. Also fixed warning about using fprintf incorrectly
This commit is contained in:
@@ -39,7 +39,7 @@ BOOL SendCommand(char *buf)
|
||||
// Send the command
|
||||
fp = fdopen(fd, "r+");
|
||||
setvbuf(fp, NULL, _IONBF, 0);
|
||||
fprintf(fp, buf);
|
||||
fputs(buf, fp);
|
||||
|
||||
// Receive the message
|
||||
while (1) {
|
||||
|
||||
Reference in New Issue
Block a user