From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52119) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKOo4-0006fh-VW for qemu-devel@nongnu.org; Sun, 08 Feb 2015 05:09:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YKOo4-0003xY-2j for qemu-devel@nongnu.org; Sun, 08 Feb 2015 05:09:36 -0500 Sender: Paolo Bonzini Message-ID: <54D735D4.8000105@redhat.com> Date: Sun, 08 Feb 2015 11:09:24 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1423340992-3156-1-git-send-email-bp@alien8.de> In-Reply-To: <1423340992-3156-1-git-send-email-bp@alien8.de> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] memsave: Add a space after address in error message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Borislav Petkov , qemu-devel@nongnu.org Cc: "qemu-trivial@nongnu.org" , Anthony Liguori Cc: qemu-trivial@nongnu.org On 07/02/2015 21:29, Borislav Petkov wrote: > From: Borislav Petkov > > Add the missing space to separate address from "specified". > > Cc: Anthony Liguori > Cc: Paolo Bonzini > Signed-off-by: Borislav Petkov > --- > cpus.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/cpus.c b/cpus.c > index 0cdd1d71560b..4fa196d48207 100644 > --- a/cpus.c > +++ b/cpus.c > @@ -1489,7 +1489,7 @@ void qmp_memsave(int64_t addr, int64_t size, const char *filename, > if (l > size) > l = size; > if (cpu_memory_rw_debug(cpu, addr, buf, l, 0) != 0) { > - error_setg(errp, "Invalid addr 0x%016" PRIx64 "specified", addr); > + error_setg(errp, "Invalid addr 0x%016" PRIx64 " specified", addr); > goto exit; > } > if (fwrite(buf, 1, l, f) != l) { >