diff options
author | Fu, Siyuan <siyuan.fu@intel.com> | 2014-08-04 01:28:26 +0000 |
---|---|---|
committer | sfu5 <sfu5@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-08-04 01:28:26 +0000 |
commit | 4e07e87fe4c12718101b592bf8c88a9447fc0965 (patch) | |
tree | eafe01a2f232a61cd0d448df725345d40b0def27 | |
parent | 35d74819a0d07eca1705bced5aafa238961a2ae2 (diff) | |
download | edk2-platforms-4e07e87fe4c12718101b592bf8c88a9447fc0965.tar.xz |
The pointer argument should be set to NULL if not used not FALSE.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Fu, Siyuan <siyuan.fu@intel.com>
Reviewed-By: Ye, Ting (ting.ye@intel.com)
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15742 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c b/NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c index 8adba6620f..9a80dc5e38 100644 --- a/NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c +++ b/NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c @@ -1,7 +1,7 @@ /** @file
Functions implementation related with Mtftp for UefiPxeBc Driver.
- Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -162,7 +162,7 @@ PxeBcMtftp6GetFileSize ( Status = Mtftp6->GetInfo (
Mtftp6,
- FALSE,
+ NULL,
Filename,
NULL,
(UINT8) OptCnt,
@@ -604,7 +604,7 @@ PxeBcMtftp4GetFileSize ( Status = Mtftp4->GetInfo (
Mtftp4,
- FALSE,
+ NULL,
Filename,
NULL,
(UINT8) OptCnt,
|