]> granicus.if.org Git - graphviz/commitdiff
remove a useless return statement
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 12 Jun 2021 04:05:29 +0000 (21:05 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 19 Jun 2021 17:16:47 +0000 (10:16 -0700)
cmd/gvmap/power.c

index a41b4af3007226063ea1cd6c5d089fbbc995cb69..20f9ceae91fc3b8e7c4f0d13ed1dc2af1a19b142 100644 (file)
@@ -139,5 +139,4 @@ void matvec_sparse(void *M, int m, int n, real *u, real **v, int transpose,
   *flag = 0;
   A = (SparseMatrix) M;
   SparseMatrix_multiply_vector(A, u, v, transpose);
-  return;
 }