Index: fusl/src/process/posix_spawn_file_actions_destroy.c |
diff --git a/fusl/src/process/posix_spawn_file_actions_destroy.c b/fusl/src/process/posix_spawn_file_actions_destroy.c |
index 3251babb556cae7cd6c81986b286ee7705e8285b..4074ccf35154549c8b55b6cd0c00c7c46540d62f 100644 |
--- a/fusl/src/process/posix_spawn_file_actions_destroy.c |
+++ b/fusl/src/process/posix_spawn_file_actions_destroy.c |
@@ -2,13 +2,12 @@ |
#include <stdlib.h> |
#include "fdop.h" |
-int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *fa) |
-{ |
- struct fdop *op = fa->__actions, *next; |
- while (op) { |
- next = op->next; |
- free(op); |
- op = next; |
- } |
- return 0; |
+int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t* fa) { |
+ struct fdop *op = fa->__actions, *next; |
+ while (op) { |
+ next = op->next; |
+ free(op); |
+ op = next; |
+ } |
+ return 0; |
} |