blind-matrix-rotate: fix nonuse of -c - blind - suckless command-line video editing utility
HTML git clone git://git.suckless.org/blind
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit b4a50a1ad6ab7d8a674ce54cde9778986badd333
DIR parent 62ffee45ea763a321606b8ec8fe1bcf0a3791d27
HTML Author: Mattias Andrée <maandree@kth.se>
Date: Fri, 14 Jul 2017 20:01:10 +0200
blind-matrix-rotate: fix nonuse of -c
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat:
M src/blind-matrix-rotate.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
DIR diff --git a/src/blind-matrix-rotate.c b/src/blind-matrix-rotate.c
@@ -29,9 +29,9 @@ static int per_channel = 0;
matrix[4][0] = matrix[0][0] = cos(buf[1]);\
matrix[3][0] = -(matrix[1][0] = sin(buf[1]));\
matrix[0][3] = matrix[0][2] = matrix[0][1] = matrix[0][0];\
- matrix[1][3] = matrix[0][2] = matrix[0][1] = matrix[1][0];\
- matrix[3][3] = matrix[0][2] = matrix[0][1] = matrix[3][0];\
- matrix[4][3] = matrix[0][2] = matrix[0][1] = matrix[4][0];\
+ matrix[1][3] = matrix[1][2] = matrix[1][1] = matrix[1][0];\
+ matrix[3][3] = matrix[3][2] = matrix[3][1] = matrix[3][0];\
+ matrix[4][3] = matrix[4][2] = matrix[4][1] = matrix[4][0];\
}\
ewriteall(STDOUT_FILENO, matrix, sizeof(matrix), "<stdout>");\
}\