diff liboctave/MArray-f.cc @ 8677:095ae5e0a831

eliminte some compiler warnings
author John W. Eaton <jwe@octave.org>
date Thu, 05 Feb 2009 02:42:58 -0500
parents c374691576f6
children eb63fbe60fab
line wrap: on
line diff
--- a/liboctave/MArray-f.cc	Thu Feb 05 01:19:29 2009 -0500
+++ b/liboctave/MArray-f.cc	Thu Feb 05 02:42:58 2009 -0500
@@ -36,7 +36,7 @@
 OCTAVE_API float
 MArray<float>::norm (float p) const
 {
-  return xnorm (FloatColumnVector (*this));
+  return xnorm (FloatColumnVector (*this), p);
 }
 
 template class OCTAVE_API MArray<float>;