diff --git a/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLibPrint.c b/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLibPrint.c index acc95dd62e..39718517d1 100644 --- a/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLibPrint.c +++ b/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLibPrint.c @@ -77,7 +77,8 @@ InternalPrint ( PcdUefiLibMaxPrintBufferSize characters are sent to ConOut. @param Format Null-terminated Unicode format string. - @param ... VARARG list consumed to process Format. + @param ... Variable argument list whose contents are accessed based + on the format string specified by Format. If Format is NULL, then ASSERT(). If Format is not aligned on a 16-bit boundary, then ASSERT(). @@ -112,7 +113,8 @@ Print ( PcdUefiLibMaxPrintBufferSize characters are sent to StdErr. @param Format Null-terminated Unicode format string. - @param ... VARARG list consumed to process Format. + @param ... Variable argument list whose contents are accessed based + on the format string specified by Format. If Format is NULL, then ASSERT(). If Format is not aligned on a 16-bit boundary, then ASSERT(). @@ -198,7 +200,8 @@ AsciiInternalPrint ( PcdUefiLibMaxPrintBufferSize characters are sent to ConOut. @param Format Null-terminated ASCII format string. - @param ... VARARG list consumed to process Format. + @param ... Variable argument list whose contents are accessed based + on the format string specified by Format. If Format is NULL, then ASSERT(). If Format is not aligned on a 16-bit boundary, then ASSERT(). @@ -233,7 +236,8 @@ AsciiPrint ( PcdUefiLibMaxPrintBufferSize characters are sent to StdErr. @param Format Null-terminated ASCII format string. - @param ... VARARG list consumed to process Format. + @param ... Variable argument list whose contents are accessed based + on the format string specified by Format. If Format is NULL, then ASSERT(). If Format is not aligned on a 16-bit boundary, then ASSERT().