summaryrefslogtreecommitdiff
path: root/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h
diff options
context:
space:
mode:
Diffstat (limited to 'IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h')
-rw-r--r--IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h b/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h
index 3439372853..d0a5de46bc 100644
--- a/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h
+++ b/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h
@@ -551,9 +551,9 @@ DevicePathToStr (
// Internal definitions
//
typedef struct {
- CHAR16 *str;
- UINTN len;
- UINTN maxlen;
+ CHAR16 *Str;
+ UINTN Len;
+ UINTN Maxlen;
} POOL_PRINT;
typedef struct {
@@ -1045,7 +1045,7 @@ DevPathVendor (
The caller must free the resulting buffer.
@param Str Tracks the allocated pool, size in use, and amount of pool allocated.
- @param fmt The format string
+ @param Fmt The format string
@param ... The data will be printed.
@return Allocated buffer with the formatted string printed in it.
@@ -1057,7 +1057,7 @@ CHAR16 *
EFIAPI
CatPrint (
IN OUT POOL_PRINT *Str,
- IN CHAR16 *fmt,
+ IN CHAR16 *Fmt,
...
);