Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ebfeb41e
Commit
ebfeb41e
authored
Mar 28, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 28, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd: Spelling fix.
parent
8d9fbef9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
directory.c
programs/cmd/directory.c
+5
-5
No files found.
programs/cmd/directory.c
View file @
ebfeb41e
...
...
@@ -63,7 +63,7 @@ static ULONGLONG byte_total;
static
DISPLAYTIME
dirTime
;
static
DISPLAYORDER
dirOrder
;
static
BOOL
orderReverse
,
orderGroupDirs
,
orderGroupDirsReverse
,
orderByCol
;
static
BOOL
sep
e
rator
;
static
BOOL
sep
a
rator
;
static
ULONG
showattrs
,
attrsbits
;
/*****************************************************************************
...
...
@@ -104,7 +104,7 @@ void WCMD_directory (void) {
shortname
=
FALSE
;
usernames
=
FALSE
;
orderByCol
=
FALSE
;
sep
e
rator
=
TRUE
;
sep
a
rator
=
TRUE
;
dirTime
=
Written
;
dirOrder
=
Name
;
orderReverse
=
FALSE
;
...
...
@@ -152,8 +152,8 @@ void WCMD_directory (void) {
case
'D'
:
if
(
negate
)
orderByCol
=
!
orderByCol
;
else
orderByCol
=
TRUE
;
break
;
case
'C'
:
if
(
negate
)
sep
erator
=
!
sepe
rator
;
else
sep
e
rator
=
TRUE
;
case
'C'
:
if
(
negate
)
sep
arator
=
!
sepa
rator
;
else
sep
a
rator
=
TRUE
;
break
;
case
'T'
:
p
=
p
+
1
;
if
(
*
p
==
':'
)
p
++
;
/* Skip optional : */
...
...
@@ -566,7 +566,7 @@ char * WCMD_filesize64 (ULONGLONG n) {
p
=
buff
;
i
=
-
3
;
do
{
if
(
sep
e
rator
&&
((
++
i
)
%
3
==
1
))
*
p
++
=
','
;
if
(
sep
a
rator
&&
((
++
i
)
%
3
==
1
))
*
p
++
=
','
;
q
=
n
/
10
;
r
=
n
-
(
q
*
10
);
*
p
++
=
r
+
'0'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment