diff options
author | Tom Rini <trini@konsulko.com> | 2020-01-16 09:40:09 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-16 09:40:09 -0500 |
commit | f47704d4ae494ebc8a25c95202e548ea32f98955 (patch) | |
tree | 1fe12b692cf15f97aafb17ab4261e8d8106a797a /cmd | |
parent | 9d5d74c3ccdc78bac969d25e98eab96872e33b5c (diff) | |
parent | 7b2e07ad34170c82a098b47a756311dec5e8e04a (diff) |
Merge branch '2020-01-15-master-imports'
- MediaTek improvements
- Some generic clk improvements
- A few assorted bugfixes
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/blk_common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/blk_common.c b/cmd/blk_common.c index c5514cf8f8..cc6e161ba0 100644 --- a/cmd/blk_common.c +++ b/cmd/blk_common.c @@ -32,7 +32,8 @@ int blk_common_cmd(int argc, char * const argv[], enum if_type if_type, return 0; } else if (strncmp(argv[1], "part", 4) == 0) { if (blk_list_part(if_type)) - printf("\nno %s devices available\n", if_name); + printf("\nno %s partition table available\n", + if_name); return 0; } return CMD_RET_USAGE; |