diff options
author | niry <niry@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-25 05:39:56 +0000 |
---|---|---|
committer | niry <niry@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-25 05:39:56 +0000 |
commit | 8de75da28bbd9a4d3c54fba99d943f9019b52193 (patch) | |
tree | fdee0f894059cd9659f133920e4fbb4402205ad5 /MdeModulePkg/Library/DxeIpIoLib | |
parent | bd682470fcbdaecf9e1b6376940274db23e1a099 (diff) | |
download | edk2-platforms-8de75da28bbd9a4d3c54fba99d943f9019b52193.tar.xz |
Fix coding style issue.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7942 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library/DxeIpIoLib')
-rw-r--r-- | MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.c b/MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.c index 92c04787b6..f37bb91ad8 100644 --- a/MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.c +++ b/MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.c @@ -532,7 +532,7 @@ IpIoTransmitHandlerDpc ( IpIo = SndEntry->IpIo;
- if (IpIo->PktSentNotify && SndEntry->NotifyData) {
+ if ((IpIo->PktSentNotify != NULL) && (SndEntry->NotifyData != NULL)) {
IpIo->PktSentNotify (
SndEntry->SndToken->Status,
SndEntry->Context,
|