From ba4b84a8b1cf537b292ff4679806cfe33330b161 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bert=20M=C3=BCnnich?= <ber.t@posteo.de>
Date: Mon, 13 Feb 2017 11:20:58 +0100
Subject: [PATCH] Fix missing quote in key-handler from commit 5c607ad

---
 Makefile         | 2 +-
 exec/key-handler | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 84d1ce2..d41d6b8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION   := git-20170107
+VERSION   := git-20170213
 
 PREFIX    := /usr/local
 MANPREFIX := $(PREFIX)/share/man
diff --git a/exec/key-handler b/exec/key-handler
index 439ab2e..dd4d1bb 100644
--- a/exec/key-handler
+++ b/exec/key-handler
@@ -18,7 +18,7 @@ readonly TMPFILE="/tmp/sxiv.$$"
 
 rotate() {
 	degree="$1"
-	tr '\n' \0' | xargs -0 realpath | sort | uniq | while read file; do
+	tr '\n' '\0' | xargs -0 realpath | sort | uniq | while read file; do
 		case "$(file -b -i "$file")" in
 		image/jpeg*) jpegtran -rotate "$degree" -copy all -outfile "$file" "$file" ;;
 		*)           mogrify  -rotate "$degree" "$file" ;;