mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
Fix Linux compilation
This commit is contained in:
parent
e0b3049bff
commit
afc5a44446
@ -14,7 +14,11 @@ WITHWARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
#include <map>
|
||||
#include <algorithm>
|
||||
#ifdef __WIN32__ // To workaround PRIX64 issues
|
||||
#include <cinttypes>
|
||||
#else
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
|
||||
#include "descriptor.h"
|
||||
#include "ffs.h"
|
||||
|
@ -12,7 +12,11 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
*/
|
||||
|
||||
#ifdef __WIN32__ // To workaround PRIX64 issues
|
||||
#include <cinttypes>
|
||||
#else
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
#include <map>
|
||||
|
||||
#include "nvramparser.h"
|
||||
|
Loading…
Reference in New Issue
Block a user