changeset 3242:8c5ad0b49742

[project @ 1999-04-09 00:20:06 by jwe]
author jwe
date Fri, 09 Apr 1999 00:20:06 +0000
parents 02259d65461a
children dd00769643ae
files examples/hello.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/examples/hello.cc
+++ b/examples/hello.cc
@@ -84,13 +84,13 @@
 
   // The octave_value_list class is a zero-based array of octave_value
   // objects.  The declaration for the octave_value class is in the
-  // file pt-const.h.  The print() method will send its output to
+  // file ov.h.  The print() method will send its output to
   // octave_stdout, so it will also end up going through the pager.
 
   for (int i = 0; i < nargin; i++)
     {
       octave_value tmp = args (i);
-      tmp.print ();
+      tmp.print (octave_stdout);
       retval (nargin-i-1) = tmp;
     }