diff options
author | Will Song <incertia9474@gmail.com> | 2015-11-24 17:59:28 -0600 |
---|---|---|
committer | Will Song <incertia9474@gmail.com> | 2015-11-24 17:59:28 -0600 |
commit | 35b8d58270211b6249fc692e61b331ef25b7a089 (patch) | |
tree | 40ed98e5fc08daaf487f00767830949f24c2a794 | |
parent | b2bc69f9261f4cb10675fe772bfe758fbc75961b (diff) | |
download | profani-tty-35b8d58270211b6249fc692e61b331ef25b7a089.tar.gz |
move brace to newline to follow conventions
-rw-r--r-- | src/command/commands.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index 0d5ce5e0..2c3b6352 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -799,7 +799,8 @@ cmd_script(ProfWin *window, const char *const command, gchar **args) /* escape a string into csv and write it to the file descriptor */ static int -_writecsv(int fd, const char *const str){ +_writecsv(int fd, const char *const str) +{ if(!str) return 0; size_t len = strlen(str); char *s = malloc(2 * len * sizeof(char)); |