aboutsummaryrefslogtreecommitdiff
path: root/LAPACKE/src/lapacke_zlarfb_work.c
diff options
context:
space:
mode:
authorHans Johnson <hans-johnson@uiowa.edu>2016-07-09 10:53:01 -0500
committerHans Johnson <hans-johnson@uiowa.edu>2016-07-09 10:53:07 -0500
commit78d32fd2a6d030d388981f096014c764ff7898f5 (patch)
treee4ea803bffff2515d0af4f38dcac6c50d77d5cb1 /LAPACKE/src/lapacke_zlarfb_work.c
parentf8fb0842d55c34ad2c26da58e9f55a3f10e52d0b (diff)
STYLE: Remove trailing whitespace in C files
This is mostly a long term maintenance improvement. Many coding styles require elimination of trailing whitespace, and many editors and source code management configurations automatically gobble up whitespace. When these tools gobble up whitespace, it complicates reviewing the meaningful code changes. By removing whitespace on one patch, it makes future code reviews much easier. =SCRIPT==================================================================== if which tempfile &>/dev/null; then TEMPMAKER=tempfile elif which mktemp &>/dev/null; then TEMPMAKER=mktemp else echo "Cannot find tempfile program." 2>&1 exit 1 fi MYTEMP=$($TEMPMAKER) trap 'rm -f $MYTEMP' SIGINT SIGTERM stripit() { echo "stripping $1" sed 's/[ \t]*$//' "$1" > $MYTEMP cp $MYTEMP "$1" } if [ $# -gt 0 ]; then while [ "$1" != "" ]; do stripit $1 shift done else while read -t 2; do stripit $REPLY done fi rm $MYTEMP =================================================
Diffstat (limited to 'LAPACKE/src/lapacke_zlarfb_work.c')
-rw-r--r--LAPACKE/src/lapacke_zlarfb_work.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/LAPACKE/src/lapacke_zlarfb_work.c b/LAPACKE/src/lapacke_zlarfb_work.c
index 9580f593..8e92e17b 100644
--- a/LAPACKE/src/lapacke_zlarfb_work.c
+++ b/LAPACKE/src/lapacke_zlarfb_work.c
@@ -44,7 +44,7 @@ lapack_int LAPACKE_zlarfb_work( int matrix_layout, char side, char trans,
lapack_int info = 0;
lapack_int nrows_v, ncols_v;
lapack_int ldc_t, ldt_t, ldv_t;
- lapack_complex_double *v_t = NULL, *t_t = NULL, *c_t = NULL;
+ lapack_complex_double *v_t = NULL, *t_t = NULL, *c_t = NULL;
if( matrix_layout == LAPACK_COL_MAJOR ) {
/* Call LAPACK function and adjust info */
LAPACK_zlarfb( &side, &trans, &direct, &storev, &m, &n, &k, v, &ldv, t,