From 9bf47eff8ab53d06e811c8e31a31dba53d3d7731 Mon Sep 17 00:00:00 2001 From: Philip Elcan Date: Wed, 10 Oct 2018 09:20:15 -0400 Subject: [PATCH] gpu: nvgpu: unit: fix typo in error msg This fixes a typo in an error message in the unit test framework when unable to parse command line arguments. Change-Id: I8a8fe0dea9480db730b48bcf81671a5701fdd251 Signed-off-by: Philip Elcan Reviewed-on: https://git-master.nvidia.com/r/1924615 Reviewed-by: svc-mobile-coverity Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Nicolas Benech Reviewed-by: Konsta Holtta Reviewed-by: Alex Waterman Reviewed-by: mobile promotions Tested-by: mobile promotions --- userspace/src/unit_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/src/unit_main.c b/userspace/src/unit_main.c index 64344bf07..c69683848 100644 --- a/userspace/src/unit_main.c +++ b/userspace/src/unit_main.c @@ -46,7 +46,7 @@ int main(int argc, char **argv) ret = core_parse_args(fw, argc, argv); if (ret) { - core_err(fw, "Enable to parse args.\n"); + core_err(fw, "Unable to parse args.\n"); core_err(fw, "Exiting!\n"); return 1; }