From 338102a7047cd7095a36152e45dbffba204f1422 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 27 Jul 2008 22:34:17 +0000 Subject: [PATCH] (_IO_new_proc_open): Remove unnecessary volatile. --- libio/iopopen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libio/iopopen.c b/libio/iopopen.c index 09f3ba3a76..1a5cc0f592 100644 --- a/libio/iopopen.c +++ b/libio/iopopen.c @@ -119,8 +119,8 @@ _IO_new_proc_open (fp, command, mode) const char *mode; { #if _IO_HAVE_SYS_WAIT - volatile int read_or_write; - volatile int parent_end, child_end; + int read_or_write; + int parent_end, child_end; int pipe_fds[2]; _IO_pid_t child_pid; -- 2.11.4.GIT