1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

move brace to newline to follow conventions

This commit is contained in:
Will Song 2015-11-24 17:59:28 -06:00
parent b2bc69f926
commit 35b8d58270
No known key found for this signature in database
GPG Key ID: F2B1A34F21A171E2

View File

@ -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));