diff --git a/compute/pzlansy.c b/compute/pzlansy.c
index 20b36bd80a691dc0e4e5ad281d8c209b44a8de70..fb4b0f4e97a8db5d73a35ef4716a2470eb3d1f54 100644
--- a/compute/pzlansy.c
+++ b/compute/pzlansy.c
@@ -239,21 +239,21 @@ chameleon_pzlansy_frb( cham_trans_t trans, cham_uplo_t uplo,
                 if ( trans == ChamConjTrans) {
                     INSERT_TASK_zhessq(
                         options, ChamEltwise, uplo, tempmm,
-                        A(m, n), W( Welt, m, n) );
+                        A(m, n), W( Welt, m, n ) );
                 }
                 else {
                     INSERT_TASK_zsyssq(
                         options, ChamEltwise, uplo, tempmm,
-                        A(m, n), W( Welt, m, n) );
+                        A(m, n), W( Welt, m, n ) );
                 }
             }
             else {
                 INSERT_TASK_zgessq(
                     options, ChamEltwise, tempmm, tempnn,
-                    A(m, n), W( Welt, m, n) );
+                    A(m, n), W( Welt, m, n ) );
                 INSERT_TASK_zgessq(
                     options, ChamEltwise, tempmm, tempnn,
-                    A(m, n), W( Welt, n, m) );
+                    A(m, n), W( Welt, n, m ) );
             }
         }
     }