1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

Merge pull request #13160 from bergzand/pr/filesystems/newline_after_cat

examples/filesystem: include fflush in `cat` command
This commit is contained in:
Koen Zandberg 2020-05-19 16:37:21 +02:00 committed by GitHub
commit 73fe9b9ed8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,6 +199,7 @@ static int _cat(int argc, char **argv)
}
close(fd);
#endif
fflush(stdout);
return 0;
}