summaryrefslogtreecommitdiff
path: root/src/c/matrixOperations/cumprod/u16columncumproda.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/matrixOperations/cumprod/u16columncumproda.c')
-rw-r--r--src/c/matrixOperations/cumprod/u16columncumproda.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c/matrixOperations/cumprod/u16columncumproda.c b/src/c/matrixOperations/cumprod/u16columncumproda.c
index 3f23bd7..7b3c2d8 100644
--- a/src/c/matrixOperations/cumprod/u16columncumproda.c
+++ b/src/c/matrixOperations/cumprod/u16columncumproda.c
@@ -19,13 +19,13 @@ void u16columncumproda(uint16 *in1, int row, int column, uint16 *out)
{
int row_cnt, col_cnt = 0;
- //Assign elements in first column as it is
+ /*Assign elements in first column as it is*/
for(row_cnt = 0; row_cnt < row; row_cnt++)
{
out[row_cnt] = in1[row_cnt];
}
- //For second column onwards
+ /*For second column onwards*/
for (row_cnt = 0; row_cnt < row; row_cnt++)
{
for ( col_cnt = 1; col_cnt < column; col_cnt++)