diff options
Diffstat (limited to 'Tools/CCode/Source/GenFfsFile/GenFfsFile.c')
-rw-r--r-- | Tools/CCode/Source/GenFfsFile/GenFfsFile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/CCode/Source/GenFfsFile/GenFfsFile.c b/Tools/CCode/Source/GenFfsFile/GenFfsFile.c index 1eea09f5fb..2ee7c444e6 100644 --- a/Tools/CCode/Source/GenFfsFile/GenFfsFile.c +++ b/Tools/CCode/Source/GenFfsFile/GenFfsFile.c @@ -38,7 +38,7 @@ Abstract: #include <Common/FirmwareVolumeImageFormat.h>
#include "ParseInf.h"
-#include "EfiCompress.h"
+#include "Compress.h"
#include "EfiCustomizedCompress.h"
#include "Crc32.h"
#include "GenFfsFile.h"
@@ -591,14 +591,14 @@ Returns: // Added "Dummy" to keep backward compatibility.
//
CompressionType = EFI_STANDARD_COMPRESSION;
- CompressFunction = (COMPRESS_FUNCTION) Compress;
+ CompressFunction = (COMPRESS_FUNCTION) TianoCompress;
} else if (strcmpi (Type, "LZH") == 0) {
//
// EFI stardard compression (LZH)
//
CompressionType = EFI_STANDARD_COMPRESSION;
- CompressFunction = (COMPRESS_FUNCTION) Compress;
+ CompressFunction = (COMPRESS_FUNCTION) TianoCompress;
} else {
//
|