diff src/remote.c @ 512:f9bf33be53ff

Remove whitespace between function name and first parenthesis for the sake of consistency.
author zas_
date Thu, 24 Apr 2008 12:23:02 +0000
parents 135570a8bd96
children 3097880d7d95
line wrap: on
line diff
--- a/src/remote.c	Thu Apr 24 11:40:26 2008 +0000
+++ b/src/remote.c	Thu Apr 24 12:23:02 2008 +0000
@@ -288,11 +288,11 @@
 	sigpipe_occured = FALSE;
 
 	new_action.sa_handler = sighandler_sigpipe;
-	sigemptyset (&new_action.sa_mask);
+	sigemptyset(&new_action.sa_mask);
 	new_action.sa_flags = 0;
 
 	/* setup our signal handler */
-	sigaction (SIGPIPE, &new_action, &old_action);
+	sigaction(SIGPIPE, &new_action, &old_action);
 
 	if (write(rc->fd, text, strlen(text)) == -1 ||
 	    write(rc->fd, "\n", 1) == -1)
@@ -313,7 +313,7 @@
 		}
 
 	/* restore the original signal handler */
-	sigaction (SIGPIPE, &old_action, NULL);
+	sigaction(SIGPIPE, &old_action, NULL);
 
 	return ret;
 }