aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-vector-projection.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-07-14 22:22:14 +0200
committerMattias Andrée <maandree@kth.se>2017-07-14 22:22:42 +0200
commit42dbdaca968f29457eac192cea065551b496703f (patch)
treee9729a56e8a1e95ec8755e8375de719b4de432e2 /src/blind-vector-projection.c
parentFix ensend_{frames,rows,pixels} (diff)
downloadblind-42dbdaca968f29457eac192cea065551b496703f.tar.gz
blind-42dbdaca968f29457eac192cea065551b496703f.tar.bz2
blind-42dbdaca968f29457eac192cea065551b496703f.tar.xz
Fix blind-{cross,dot,quaternion}-product and blind-vector-projection
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/blind-vector-projection.c')
-rw-r--r--src/blind-vector-projection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blind-vector-projection.c b/src/blind-vector-projection.c
index 199e01f..27b8b51 100644
--- a/src/blind-vector-projection.c
+++ b/src/blind-vector-projection.c
@@ -71,11 +71,11 @@ main(int argc, char *argv[])
usage();
} ARGEND;
- if (argc != 2)
+ if (argc != 1)
usage();
eopen_stream(&left, NULL);
- eopen_stream(&right, argv[1]);
+ eopen_stream(&right, argv[0]);
if (!strcmp(left.pixfmt, "xyza"))
process = process_lf;