diff options
author | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-21 02:57:57 +0000 |
---|---|---|
committer | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-21 02:57:57 +0000 |
commit | 58125b7a64b7378d78bdeb6da639ff51eb74e38f (patch) | |
tree | a9d9a6ea147ff31f9183b8b3abe4ef837c8f2980 /MdePkg/Library/BasePrintLib | |
parent | ea99d5d1a5ae552c2b68f9fb947be154d446850f (diff) | |
download | edk2-platforms-58125b7a64b7378d78bdeb6da639ff51eb74e38f.tar.xz |
Function headers and comments have been checked with spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6653 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BasePrintLib')
-rw-r--r-- | MdePkg/Library/BasePrintLib/PrintLib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BasePrintLib/PrintLib.c b/MdePkg/Library/BasePrintLib/PrintLib.c index 92deb5f5db..d08024758a 100644 --- a/MdePkg/Library/BasePrintLib/PrintLib.c +++ b/MdePkg/Library/BasePrintLib/PrintLib.c @@ -492,10 +492,10 @@ AsciiSPrintUnicodeFormat ( UINTN
EFIAPI
AsciiValueToString (
- IN OUT CHAR8 *Buffer,
- IN UINTN Flags,
- IN INT64 Value,
- IN UINTN Width
+ OUT CHAR8 *Buffer,
+ IN UINTN Flags,
+ IN INT64 Value,
+ IN UINTN Width
)
{
return BasePrintLibConvertValueToString (Buffer, Flags, Value, Width, 1);
|