aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2012-09-27 11:13:26 -0500
committerDan Williams <dcbw@redhat.com>2012-11-14 11:04:31 -0600
commit8af47212bdc4a87528f74c7aff7ffc6d3fe9cc7d (patch)
treef973d2b46699c04339c78a705d71c09677a8d52d
parent24a0eea974abbd7d92e220fe25702d87cc44dd31 (diff)
uml290mode: fix log message
-rw-r--r--uml290/uml290mode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/uml290/uml290mode.c b/uml290/uml290mode.c
index 2772daf2..b5f1f4df 100644
--- a/uml290/uml290mode.c
+++ b/uml290/uml290mode.c
@@ -406,13 +406,13 @@ qcdm_set_mode (const char *port, u_int8_t mode)
/* Send the command */
if (!qcdm_send (fd, buf, len)) {
- fprintf (stderr, "E: failed to send QCDM HDR pref command\n");
+ fprintf (stderr, "E: failed to send QCDM Control command\n");
goto error;
}
reply_len = qcdm_wait_reply (fd, buf, sizeof (buf));
if (!reply_len) {
- fprintf (stderr, "E: failed to receive HDR pref command reply\n");
+ fprintf (stderr, "E: failed to receive Control command reply\n");
goto error;
}
@@ -420,7 +420,7 @@ qcdm_set_mode (const char *port, u_int8_t mode)
err = QCDM_SUCCESS;
result = qcdm_cmd_control_result (buf, reply_len, &err);
if (!result) {
- fprintf (stderr, "E: failed to parse HDR pref command reply: %d\n", err);
+ fprintf (stderr, "E: failed to parse Control command reply: %d\n", err);
goto error;
}