Skip to content

Commit

Permalink
Merge pull request #1384 from eric-ch/qemu-misc
Browse files Browse the repository at this point in the history
qemu: small log output improvments
  • Loading branch information
jandryuk authored Jan 6, 2021
2 parents 503bc07 + 13394f7 commit 5867978
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ PATCHES
+ }
+ xenstore_update_nic(nic);
+
+ fprintf(stderr, "Registered xenstore watch for NIC %s", name);
+ fprintf(stderr, "Registered xenstore watch for NIC %s\n", name);
+
+ return 0;
+}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
+ fd = argo_socket(s->stream ? SOCK_STREAM : SOCK_DGRAM);
+ if (fd < 0) {
+ error_setg(errp, "%s cannot create argo socket - err: %d",
+ ARGO_CHARDRV_NAME, fd);
+ ARGO_CHARDRV_NAME, errno);
+ return;
+ }
+
Expand Down

0 comments on commit 5867978

Please sign in to comment.