diff options
author | Mike Smith <msmith@FreeBSD.org> | 2001-07-21 03:55:17 +0000 |
---|---|---|
committer | Mike Smith <msmith@FreeBSD.org> | 2001-07-21 03:55:17 +0000 |
commit | 9d5c013ca4e5dbd28bd8af000fb72649e20b08ec (patch) | |
tree | ace3ff94f32745a26e8a131379a4320fd8795556 /sys/contrib/dev/acpica/utclib.c | |
parent | 2e5c56cb6b4128c20342c3912bb3e8eb095c663f (diff) |
Vendor import of the Intel ACPI CA 20010717 snapshot.
Notes
Notes:
svn path=/vendor-sys/acpica/dist/; revision=80062
Diffstat (limited to 'sys/contrib/dev/acpica/utclib.c')
-rw-r--r-- | sys/contrib/dev/acpica/utclib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/contrib/dev/acpica/utclib.c b/sys/contrib/dev/acpica/utclib.c index 5b5b0e0d93d8..9de98de71b47 100644 --- a/sys/contrib/dev/acpica/utclib.c +++ b/sys/contrib/dev/acpica/utclib.c @@ -1,7 +1,7 @@ /****************************************************************************** * * Module Name: cmclib - Local implementation of C library functions - * $Revision: 38 $ + * $Revision: 39 $ * *****************************************************************************/ @@ -344,7 +344,7 @@ AcpiUtStrcat ( for (String = DstString; *String++; ) { ; } - /* Concatinate the string */ + /* Concatenate the string */ for (--String; (*String++ = *SrcString++); ) { ; } @@ -384,7 +384,7 @@ AcpiUtStrncat ( for (String = DstString; *String++; ) { ; } - /* Concatinate the string */ + /* Concatenate the string */ for (--String; (*String++ = *SrcString++) && --Count; ) { ; } |