]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* libio/iopopen.c (_IO_new_proc_open): Remove unnecessary volatile.
authorUlrich Drepper <drepper@redhat.com>
Sun, 27 Jul 2008 22:34:39 +0000 (22:34 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 27 Jul 2008 22:34:39 +0000 (22:34 +0000)
ChangeLog
libio/iopopen.c

index 12d98d00d589414033c4696c707e06ecbccc88b6..4d5b530cf737fa544fa1f952fcbb75ce953706f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2008-07-27  Ulrich Drepper  <drepper@redhat.com>
 
+       * libio/iopopen.c (_IO_new_proc_open): Remove unnecessary volatile.
+
        * posix/wordexp.c (exec_comm): Use pipe2 if possible to create
        file descriptors with close-on-exec set.
        (exec_comm_child): Fix the case where the write end of the pipe is
index 09f3ba3a76b0a1299f4db18d9f9fcd6d6508af35..1a5cc0f59262df51f31527f4e2189e8bf56d79ae 100644 (file)
@@ -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;