aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-to-text.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-07-14 20:57:45 +0200
committerMattias Andrée <maandree@kth.se>2017-07-14 20:57:45 +0200
commite650c912ba86c84cdad466674a0ca0c4ebadef9c (patch)
tree65c2a90641fac90ef7700d185e867544e7d87b43 /src/blind-to-text.c
parentblind-matrix-rotate: fix nonuse of -c (diff)
downloadblind-e650c912ba86c84cdad466674a0ca0c4ebadef9c.tar.gz
blind-e650c912ba86c84cdad466674a0ca0c4ebadef9c.tar.bz2
blind-e650c912ba86c84cdad466674a0ca0c4ebadef9c.tar.xz
Fix blind-invert-matrix and increase percision of blind-to-text
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/blind-to-text.c')
-rw-r--r--src/blind-to-text.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blind-to-text.c b/src/blind-to-text.c
index e0c5f41..c8cf76e 100644
--- a/src/blind-to-text.c
+++ b/src/blind-to-text.c
@@ -16,8 +16,8 @@ USAGE("")
(CAST)(((TYPE *)(stream->buf + i))[3]));\
} while (0)
-static void process_xyza (struct stream *stream, size_t n) {PROCESS(double, double, "lf");}
-static void process_xyzaf(struct stream *stream, size_t n) {PROCESS(float, double, "lf");}
+static void process_xyza (struct stream *stream, size_t n) {PROCESS(double, double, ".25lf");}
+static void process_xyzaf(struct stream *stream, size_t n) {PROCESS(float, double, ".25lf");}
int
main(int argc, char *argv[])