diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 09:02:31 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 09:02:31 +0000 |
commit | d3d004dd3507f841745956a035fff68936378f9c (patch) | |
tree | 139fa79a102d11dbab9828d2649c119245b196b1 /miscutils/mt.c | |
parent | 1340ca8c87d81bf00e604905f25bc04da22e980f (diff) | |
download | busybox-w32-d3d004dd3507f841745956a035fff68936378f9c.tar.gz busybox-w32-d3d004dd3507f841745956a035fff68936378f9c.tar.bz2 busybox-w32-d3d004dd3507f841745956a035fff68936378f9c.zip |
last nail into error_msg() (de)capitalization
Diffstat (limited to 'miscutils/mt.c')
-rw-r--r-- | miscutils/mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/mt.c b/miscutils/mt.c index a2bb6be91..f4a0e994c 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c | |||
@@ -78,7 +78,7 @@ int mt_main(int argc, char **argv) | |||
78 | } | 78 | } |
79 | 79 | ||
80 | if (code->name == 0) { | 80 | if (code->name == 0) { |
81 | bb_error_msg("unrecognized opcode %s.", argv[1]); | 81 | bb_error_msg("unrecognized opcode %s", argv[1]); |
82 | return EXIT_FAILURE; | 82 | return EXIT_FAILURE; |
83 | } | 83 | } |
84 | 84 | ||