You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
572 B
20 lines
572 B
--- a/source/compiler/dtio.c.schar 2012-10-17 07:25:42.050504291 -0400 |
|
+++ b/source/compiler/dtio.c 2012-10-17 07:27:14.530504054 -0400 |
|
@@ -486,7 +486,7 @@ |
|
UINT32 State = DT_NORMAL_TEXT; |
|
UINT32 CurrentLineOffset; |
|
UINT32 i; |
|
- char c; |
|
+ int c; |
|
|
|
|
|
for (i = 0; ;) |
|
@@ -500,7 +500,7 @@ |
|
UtExpandLineBuffers (); |
|
} |
|
|
|
- c = (char) getc (Handle); |
|
+ c = getc (Handle); |
|
if (c == EOF) |
|
{ |
|
switch (State)
|
|
|