diff options
author | Mahmoud Mandour | 2021-08-06 16:10:12 +0200 |
---|---|---|
committer | Alex Bennée | 2021-09-02 12:29:34 +0200 |
commit | b40310616d2bd550279dd22b05483c3c613a00ff (patch) | |
tree | ff32da584e46100035f9a66ce629c070b4b1821f /contrib | |
parent | Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20210901'... (diff) | |
download | qemu-b40310616d2bd550279dd22b05483c3c613a00ff.tar.gz qemu-b40310616d2bd550279dd22b05483c3c613a00ff.tar.xz qemu-b40310616d2bd550279dd22b05483c3c613a00ff.zip |
plugins/execlog: removed unintended "s" at the end of log lines.
Signed-off-by: Mahmoud Mandour <ma.mandourr@gmail.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210803151428.125323-1-ma.mandourr@gmail.com>
Message-Id: <20210806141015.2487502-2-alex.bennee@linaro.org>
Cc: qemu-stable@nongnu.org
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/plugins/execlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/plugins/execlog.c b/contrib/plugins/execlog.c index 2de9f0d7d4..a5275dcc15 100644 --- a/contrib/plugins/execlog.c +++ b/contrib/plugins/execlog.c @@ -67,7 +67,7 @@ static void vcpu_insn_exec(unsigned int cpu_index, void *udata) /* Print previous instruction in cache */ if (s->len) { qemu_plugin_outs(s->str); - qemu_plugin_outs("s\n"); + qemu_plugin_outs("\n"); } /* Store new instruction in cache */ |