about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorWill Song <incertia9474@gmail.com>2015-11-24 17:59:28 -0600
committerWill Song <incertia9474@gmail.com>2015-11-24 17:59:28 -0600
commit35b8d58270211b6249fc692e61b331ef25b7a089 (patch)
tree40ed98e5fc08daaf487f00767830949f24c2a794 /src
parentb2bc69f9261f4cb10675fe772bfe758fbc75961b (diff)
downloadprofani-tty-35b8d58270211b6249fc692e61b331ef25b7a089.tar.gz
move brace to newline to follow conventions
Diffstat (limited to 'src')
-rw-r--r--src/command/commands.c3
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));