1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-03 12:35:02 +00:00

units(1): add missing ':' for two short arguments

PR:		209850
MFC After:	3 days
This commit is contained in:
Eitan Adler 2018-01-05 07:24:43 +00:00
parent d734a3dfcd
commit 21dc7ae75b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327578

View File

@ -763,7 +763,7 @@ main(int argc, char **argv)
history_file = NULL;
outputformat = numfmt;
quit = false;
while ((optchar = getopt_long(argc, argv, "+ehf:oqtvHUV", longopts, NULL)) != -1) {
while ((optchar = getopt_long(argc, argv, "+ehf:o:qtvH:UV", longopts, NULL)) != -1) {
switch (optchar) {
case 'e':
outputformat = "%6e";