aboutsummaryrefslogtreecommitdiffstats
path: root/src/scrotty.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scrotty.c')
-rw-r--r--src/scrotty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scrotty.c b/src/scrotty.c
index 9837a26..9105368 100644
--- a/src/scrotty.c
+++ b/src/scrotty.c
@@ -207,8 +207,8 @@ save (const char *fbpath, const char *imgpath, long width, long height, int raw)
close (pipe_rw[1]);
/* Open file descriptor for the output image. */
- fd = open(imgpath, O_WRONLY | O_CREAT | O_TRUNC,
- S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
+ fd = open (imgpath, O_WRONLY | O_CREAT | O_TRUNC,
+ S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if (fd == -1)
goto child_fail;