1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples/filesystem: include newline in cat command

This commit is contained in:
Koen Zandberg 2020-01-17 20:33:32 +01:00
parent cf5356df24
commit 898c6a758e
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B

View File

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