From patchwork Wed Jun 2 07:06:03 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: hxtool: Fix line number reporting on SQMP/EQMP errors Date: Tue, 01 Jun 2010 21:06:03 -0000 From: Jan Kiszka X-Patchwork-Id: 54345 Message-Id: <4C0602DB.6050604@web.de> To: qemu-devel , Anthony Liguori Cc: From: Jan Kiszka Signed-off-by: Jan Kiszka --- hxtool | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hxtool b/hxtool index d499dc0..7ca83ed 100644 --- a/hxtool +++ b/hxtool @@ -59,6 +59,7 @@ hxtoqmp() { IFS= flag=0 + line=1 while read -r str; do case "$str" in HXCOMM*) @@ -87,6 +88,7 @@ hxtoqmp() test $flag -eq 1 && echo "$str" ;; esac + line=$((line+1)) done }