mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:25:43 +00:00
Sync with trunk r63174.
CORE-8176 #resolve #comment Trunk commit r63174 should fix this issue. I merged from trunk to bring it into Shell-experiments. svn path=/branches/shell-experiments/; revision=63175
This commit is contained in:
commit
057a69972f
323 changed files with 17885 additions and 12574 deletions
|
@ -58,7 +58,6 @@ VOID Usage(VOID)
|
|||
int _tmain (int argc, TCHAR *argv[])
|
||||
{
|
||||
INT i;
|
||||
INT LineLen1, LineLen2;
|
||||
FILE *fp1, *fp2; // file pointers
|
||||
PTCHAR Line1 = (TCHAR *)malloc(STRBUF * sizeof(TCHAR));
|
||||
PTCHAR Line2 = (TCHAR *)malloc(STRBUF * sizeof(TCHAR));
|
||||
|
@ -156,8 +155,8 @@ int _tmain (int argc, TCHAR *argv[])
|
|||
|
||||
_tprintf(_T("Comparing %s and %s...\n"), File1, File2);
|
||||
|
||||
while ((LineLen1 = GetLine(Line1, fp1) != 0) &&
|
||||
(LineLen2 = GetLine(Line2, fp2) != 0))
|
||||
while ((GetLine(Line1, fp1) != 0) &&
|
||||
(GetLine(Line2, fp2) != 0))
|
||||
{
|
||||
// LineCount++;
|
||||
while ((*Line1 != '\0') && (*Line2 != '\0'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue