diff src/print.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 905688aa2317
line wrap: on
line diff
--- a/src/print.c	Thu Apr 24 11:40:26 2008 +0000
+++ b/src/print.c	Thu Apr 24 12:23:02 2008 +0000
@@ -978,11 +978,11 @@
 	pe->error = &pipe_handler_error;
 
 	new_action.sa_handler = pipe_handler_sigpipe_cb;
-	sigemptyset (&new_action.sa_mask);
+	sigemptyset(&new_action.sa_mask);
 	new_action.sa_flags = 0;
 
 	/* setup our signal handler */
-	sigaction (SIGPIPE, &new_action, &pe->old_action);
+	sigaction(SIGPIPE, &new_action, &pe->old_action);
 
 	pipe_handler_data = pe;
 	return pe;
@@ -994,7 +994,7 @@
 	if (pe != pipe_handler_data) printf("warning SIGPIPE handler not closing same data\n");
 
 	/* restore the original signal handler */
-	sigaction (SIGPIPE, &pe->old_action, NULL);
+	sigaction(SIGPIPE, &pe->old_action, NULL);
 
 	pipe_handler_data = NULL;
 	g_free(pe);