diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-09-14 22:53:11 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2012-09-14 22:53:11 +0000 |
commit | ebef5c959a0ea58fa05c4a5a80bb93104780bf87 (patch) | |
tree | 033c7834a7ab5fe0b48b11ac066372bfd32f2c22 /source/compiler/aslstartup.c | |
parent | fc8e34d9a95f87b780f9ee3d400dd995aba2ce27 (diff) |
Notes
Diffstat (limited to 'source/compiler/aslstartup.c')
-rw-r--r-- | source/compiler/aslstartup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/compiler/aslstartup.c b/source/compiler/aslstartup.c index a302164d452b..1f51c7115a5a 100644 --- a/source/compiler/aslstartup.c +++ b/source/compiler/aslstartup.c @@ -239,7 +239,7 @@ AslDetectSourceFileType ( * File is ASCII. Determine if this is an ASL file or an ACPI data * table file. */ - while (fgets (Gbl_CurrentLineBuffer, ASL_LINE_BUFFER_SIZE, Info->Handle)) + while (fgets (Gbl_CurrentLineBuffer, Gbl_LineBufferSize, Info->Handle)) { /* Uppercase the buffer for caseless compare */ |