comparison src/DLD-FUNCTIONS/colamd.cc @ 7520:b166043585a8

use 0 instead of NULL
author John W. Eaton <jwe@octave.org>
date Fri, 22 Feb 2008 16:44:03 -0500
parents a1dbe9d80eee
children 4976f66d469b
comparison
equal deleted inserted replaced
7519:3bf53d7f9d39 7520:b166043585a8
716 if (n_row != n_col) 716 if (n_row != n_col)
717 { 717 {
718 error ("etree: matrix is marked as symmetric, but not square"); 718 error ("etree: matrix is marked as symmetric, but not square");
719 return retval; 719 return retval;
720 } 720 }
721 symetree (ridx, cidx, etree, NULL, n_col); 721 symetree (ridx, cidx, etree, 0, n_col);
722 } 722 }
723 else 723 else
724 { 724 {
725 OCTAVE_LOCAL_BUFFER (octave_idx_type, colbeg, n_col); 725 OCTAVE_LOCAL_BUFFER (octave_idx_type, colbeg, n_col);
726 OCTAVE_LOCAL_BUFFER (octave_idx_type, colend, n_col); 726 OCTAVE_LOCAL_BUFFER (octave_idx_type, colend, n_col);