aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@google.com>2021-02-10 15:48:28 -0600
committerBill Richardson <wfrichar@google.com>2021-02-20 04:35:01 +0000
commit90d6a228d6fa326c408ffb634aa6b97e0ecae002 (patch)
treeffb6768dc9f07741115b12c17cfd2fb13be8dec2
parent3b471109f617e01bcfb8c58db8df6cfd5c609575 (diff)
downloadgeneric-90d6a228d6fa326c408ffb634aa6b97e0ecae002.tar.gz
Tweak: fix typos in debug strings
Bug: None Test: None Change-Id: I922758e7c64caa339b1ce03eb5e44e3c685ead72 Signed-off-by: Bill Richardson <wfrichar@google.com> Reviewed-on: https://nugget-os-review.googlesource.com/c/host/generic/+/40284 Presubmit-Verified: TreeHugger Robot
-rw-r--r--libnos_transport/transport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnos_transport/transport.c b/libnos_transport/transport.c
index 77a430a..85ba312 100644
--- a/libnos_transport/transport.c
+++ b/libnos_transport/transport.c
@@ -471,7 +471,7 @@ uint32_t nos_call_application(const struct nos_device *dev,
return APP_ERROR_IO;
}
- NLOGD("Calling app %d with params 0x%04x", app_id, params);
+ NLOGD("Calling App %d with params 0x%04x", app_id, params);
struct transport_status status;
uint32_t status_code;
@@ -501,7 +501,7 @@ uint32_t nos_call_application(const struct nos_device *dev,
NLOGW("App %d request checksum error", app_id);
}
if (status_code == APP_ERROR_CHECKSUM) {
- NLOGE("App %d equest checksum failed too many times", app_id);
+ NLOGE("App %d request checksum failed too many times", app_id);
status_code = APP_ERROR_IO;
}