Francois Gouget : cmd: Spelling fix.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Mar 28 06:42:05 CDT 2007


Module: wine
Branch: master
Commit: ebfeb41e99d93b08c78f7ecd4f20667efef5bea4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ebfeb41e99d93b08c78f7ecd4f20667efef5bea4

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Mar 28 10:01:52 2007 +0200

cmd: Spelling fix.

---

 programs/cmd/directory.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/programs/cmd/directory.c b/programs/cmd/directory.c
index 076a6fe..79d755a 100644
--- a/programs/cmd/directory.c
+++ b/programs/cmd/directory.c
@@ -63,7 +63,7 @@ static ULONGLONG byte_total;
 static DISPLAYTIME dirTime;
 static DISPLAYORDER dirOrder;
 static BOOL orderReverse, orderGroupDirs, orderGroupDirsReverse, orderByCol;
-static BOOL seperator;
+static BOOL separator;
 static ULONG showattrs, attrsbits;
 
 /*****************************************************************************
@@ -104,7 +104,7 @@ void WCMD_directory (void) {
   shortname  = FALSE;
   usernames  = FALSE;
   orderByCol = FALSE;
-  seperator  = TRUE;
+  separator  = 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) seperator = !seperator;
-              else seperator = TRUE;
+    case 'C': if (negate) separator = !separator;
+              else separator = 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 (seperator && ((++i)%3 == 1)) *p++ = ',';
+    if (separator && ((++i)%3 == 1)) *p++ = ',';
     q = n / 10;
     r = n - (q * 10);
     *p++ = r + '0';




More information about the wine-cvs mailing list