aboutsummaryrefslogtreecommitdiffstats
path: root/src/simulator
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-02-27 13:46:57 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-02-27 14:20:15 -0500
commitc07371a2f015992a82282b595975bf84c053f0af (patch)
tree9bef4b8f48c4cc7628a225e114534aef06d2eac1 /src/simulator
parent5a74549ef6c6ee1a6112bc3f643e4974f0e66f07 (diff)
downloadkutter-c07371a2f015992a82282b595975bf84c053f0af.tar.gz
kutter-c07371a2f015992a82282b595975bf84c053f0af.tar.xz
kutter-c07371a2f015992a82282b595975bf84c053f0af.zip
simulator: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/simulator')
-rw-r--r--src/simulator/serial.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/simulator/serial.c b/src/simulator/serial.c
index 3c7d008d..d2d183f4 100644
--- a/src/simulator/serial.c
+++ b/src/simulator/serial.c
@@ -14,7 +14,8 @@ serial_init(void)
{
// Make stdin/stdout non-blocking
fcntl(STDIN_FILENO, F_SETFL, fcntl(STDIN_FILENO, F_GETFL, 0) | O_NONBLOCK);
- fcntl(STDOUT_FILENO, F_SETFL, fcntl(STDOUT_FILENO, F_GETFL, 0) | O_NONBLOCK);
+ fcntl(STDOUT_FILENO, F_SETFL
+ , fcntl(STDOUT_FILENO, F_GETFL, 0) | O_NONBLOCK);
}
DECL_INIT(serial_init);