# HG changeset patch # User Rik # Date 1399478983 25200 # Node ID 3bffa847d215f31020b29c5fb45870b33612b697 # Parent 9fbb254c09e62d3ed359f4a81e9d92579d92917a maint: Use space after variable name and before equals sign. * ov-bool-sparse.cc (octave_sparse_bool_matrix::save_binary): Use "itmp = ..." rather than "itmp= ..." ov-cx-sparse.cc (octave_sparse_complex_matrix::save_binary): Use "itmp = ..." rather than "itmp= ..." ov-re-sparse.cc (octave_sparse_matrix::save_binary): Use "itmp = ..." rather than "itmp= ..." diff -r 9fbb254c09e6 -r 3bffa847d215 libinterp/octave-value/ov-bool-sparse.cc --- a/libinterp/octave-value/ov-bool-sparse.cc Wed May 07 08:54:19 2014 -0700 +++ b/libinterp/octave-value/ov-bool-sparse.cc Wed May 07 09:09:43 2014 -0700 @@ -225,16 +225,16 @@ int32_t itmp; // Use negative value for ndims to be consistent with other formats - itmp= -2; + itmp = -2; os.write (reinterpret_cast (&itmp), 4); - itmp= nr; + itmp = nr; os.write (reinterpret_cast (&itmp), 4); - itmp= nc; + itmp = nc; os.write (reinterpret_cast (&itmp), 4); - itmp= nz; + itmp = nz; os.write (reinterpret_cast (&itmp), 4); // add one to the printed indices to go from diff -r 9fbb254c09e6 -r 3bffa847d215 libinterp/octave-value/ov-cx-sparse.cc --- a/libinterp/octave-value/ov-cx-sparse.cc Wed May 07 08:54:19 2014 -0700 +++ b/libinterp/octave-value/ov-cx-sparse.cc Wed May 07 09:09:43 2014 -0700 @@ -241,16 +241,16 @@ int32_t itmp; // Use negative value for ndims to be consistent with other formats - itmp= -2; + itmp = -2; os.write (reinterpret_cast (&itmp), 4); - itmp= nr; + itmp = nr; os.write (reinterpret_cast (&itmp), 4); - itmp= nc; + itmp = nc; os.write (reinterpret_cast (&itmp), 4); - itmp= nz; + itmp = nz; os.write (reinterpret_cast (&itmp), 4); save_type st = LS_DOUBLE; diff -r 9fbb254c09e6 -r 3bffa847d215 libinterp/octave-value/ov-re-sparse.cc --- a/libinterp/octave-value/ov-re-sparse.cc Wed May 07 08:54:19 2014 -0700 +++ b/libinterp/octave-value/ov-re-sparse.cc Wed May 07 09:09:43 2014 -0700 @@ -274,16 +274,16 @@ int32_t itmp; // Use negative value for ndims to be consistent with other formats - itmp= -2; + itmp = -2; os.write (reinterpret_cast (&itmp), 4); - itmp= nr; + itmp = nr; os.write (reinterpret_cast (&itmp), 4); - itmp= nc; + itmp = nc; os.write (reinterpret_cast (&itmp), 4); - itmp= nz; + itmp = nz; os.write (reinterpret_cast (&itmp), 4); save_type st = LS_DOUBLE;