Mercurial > hg > octave-nkf
diff src/oct-procbuf.cc @ 3544:71bd2d124119
[project @ 2000-02-02 21:02:31 by jwe]
author | jwe |
---|---|
date | Wed, 02 Feb 2000 21:02:41 +0000 |
parents | 97cf542676e1 |
children | 0b6b55fd0a5c |
line wrap: on
line diff
--- a/src/oct-procbuf.cc +++ b/src/oct-procbuf.cc @@ -69,7 +69,7 @@ int pipe_fds[2]; - volatile int child_std_end = (mode & ios::in) ? 1 : 0; + volatile int child_std_end = (mode & std::ios::in) ? 1 : 0; volatile int parent_end, child_end; @@ -79,7 +79,7 @@ if (pipe (pipe_fds) < 0) return 0; - if (mode & ios::in) + if (mode & std::ios::in) { parent_end = pipe_fds[0]; child_end = pipe_fds[1];