Skip to content

Commit

Permalink
[format] Replace tabs with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecki committed Jul 2, 2013
1 parent af359c5 commit bb70707
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/aeternum.c
Expand Up @@ -66,15 +66,15 @@ void spawn_child(int detach) {
options.stdio_count = 3;

if (detach) {
for (i = 0; i < options.stdio_count; i++) {
stdio[i].flags = UV_IGNORE;
}
for (i = 0; i < options.stdio_count; i++) {
stdio[i].flags = UV_IGNORE;
}
}
else {
for (i = 0; i < options.stdio_count; i++) {
stdio[i].flags = UV_INHERIT_FD;
stdio[i].data.fd = i;
}
for (i = 0; i < options.stdio_count; i++) {
stdio[i].flags = UV_INHERIT_FD;
stdio[i].data.fd = i;
}
}

options.file = opts.child_args[0];
Expand Down

0 comments on commit bb70707

Please sign in to comment.