aboutsummaryrefslogtreecommitdiff
path: root/source/tools/acpisrc/asutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/tools/acpisrc/asutils.c')
-rw-r--r--source/tools/acpisrc/asutils.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/source/tools/acpisrc/asutils.c b/source/tools/acpisrc/asutils.c
index a596ea8cee06..f3d9350a3108 100644
--- a/source/tools/acpisrc/asutils.c
+++ b/source/tools/acpisrc/asutils.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asutils - common utilities
@@ -63,7 +62,7 @@ AsSkipUntilChar (
{
if (!*Buffer)
{
- return NULL;
+ return (NULL);
}
Buffer++;
@@ -92,7 +91,7 @@ AsSkipPastChar (
{
if (!*Buffer)
{
- return NULL;
+ return (NULL);
}
Buffer++;
@@ -110,7 +109,7 @@ AsSkipPastChar (
*
* DESCRIPTION: This function inserts and removes data from the file buffer.
* if more data is inserted than is removed, the data in the buffer
- * is moved to make room. If less data is inserted than is removed,
+ * is moved to make room. If less data is inserted than is removed,
* the remaining data is moved to close the hole.
*
******************************************************************************/
@@ -163,7 +162,7 @@ AsReplaceData (
*
* DESCRIPTION: This function inserts and removes data from the file buffer.
* if more data is inserted than is removed, the data in the buffer
- * is moved to make room. If less data is inserted than is removed,
+ * is moved to make room. If less data is inserted than is removed,
* the remaining data is moved to close the hole.
*
******************************************************************************/
@@ -208,7 +207,7 @@ AsInsertData (
*
* DESCRIPTION: This function inserts and removes data from the file buffer.
* if more data is inserted than is removed, the data in the buffer
- * is moved to make room. If less data is inserted than is removed,
+ * is moved to make room. If less data is inserted than is removed,
* the remaining data is moved to close the hole.
*
******************************************************************************/
@@ -231,4 +230,3 @@ AsRemoveData (
return (StartPointer);
}
-