aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab <[email protected]>2005-05-22 09:49:43 +0000
committerAndreas Schwab <[email protected]>2005-05-22 09:49:43 +0000
commit41c4895cd757ea7affdaa14e9c877435c1d6cb80 (patch)
tree6abf03d48902004910cbdc54e1006bf8b38d78c7
parentedceb51cbc80e88ca6c53837daf1e6a0c4d5de26 (diff)
(send_process): Move misplaced volatile.
-rw-r--r--src/ChangeLog2
-rw-r--r--src/process.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c14391dce5..0e4e571e85 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,6 @@
2005-05-22 Andreas Schwab <[email protected]>
- * process.c (send_process): Remove misplaced volatile.
+ * process.c (send_process): Move misplaced volatile.
2005-05-21 Richard M. Stallman <[email protected]>
diff --git a/src/process.c b/src/process.c
index db13406606..5f756f4db0 100644
--- a/src/process.c
+++ b/src/process.c
@@ -5134,7 +5134,7 @@ send_process (proc, buf, len, object)
int rv;
struct coding_system *coding;
struct gcpro gcpro1;
- SIGTYPE (*old_sigpipe) ();
+ SIGTYPE (*volatile old_sigpipe) ();
GCPRO1 (object);