diff options
author | Olivier Martin <olivier.martin@arm.com> | 2015-02-25 02:24:04 +0000 |
---|---|---|
committer | erictian <erictian@Edk2> | 2015-02-25 02:24:04 +0000 |
commit | 92141e17772f766960bb6984543d89af21ccfb21 (patch) | |
tree | f2453e539b53339d78656b11582d8adf6119d751 /MdeModulePkg | |
parent | 0c8cd06707f88ffb74344048487b265caa9fd040 (diff) | |
download | edk2-platforms-92141e17772f766960bb6984543d89af21ccfb21.tar.xz |
MdeModulePkg/FvSimpleFileSystemDxe: Fixed ARM compiler error
Some compilers requires an empty line at the end of the file.
ARM compiler version 5 is one of these compilers:
error #1-D: last line of file ends without a newline
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16918 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemInternal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemInternal.h b/MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemInternal.h index c8da5f68fd..495ba97a59 100644 --- a/MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemInternal.h +++ b/MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemInternal.h @@ -619,4 +619,4 @@ extern EFI_FILE_PROTOCOL mFileSystemTemplate; extern EFI_COMPONENT_NAME_PROTOCOL gFvSimpleFileSystemComponentName;
extern EFI_COMPONENT_NAME2_PROTOCOL gFvSimpleFileSystemComponentName2;
-#endif
\ No newline at end of file +#endif
|