[CMD]
[reactos.git] / reactos / base / shell / cmd / alias.c
index 4cfa019..ac5129a 100644 (file)
  *    24-Jan-1998 Eric Kohl
  *        Redirection safe!
  *
- *    02-Apr-2005 (Magnus Olsen) <magnus@greatlord.com>
+ *    02-Apr-2005 (Magnus Olsen <magnus@greatlord.com>)
  *        Remove all hardcoded strings in En.rc
  *
- *    02-Feb-2008 (Christoph von Wittich) <christoph_vw@reactos.org>)
+ *    02-Feb-2008 (Christoph von Wittich <christoph_vw@reactos.org>)
  *        rewrote alias handling for doskey compat
   */
 
@@ -58,7 +58,7 @@ PrintAlias (VOID)
     DWORD len;
 
     len = GetConsoleAliasesLength(_T("cmd.exe"));
-    if (len <= 0)
+    if (len == 0)
         return;
 
     /* allocate memory for an extra \0 char to make parsing easier */