Fix syntax on 32-bit platforms

This commit is contained in:
TheAssassin
2018-08-31 19:59:15 +02:00
parent cd83c28196
commit d13814d784

View File

@@ -249,7 +249,7 @@ namespace linuxdeploy {
uint8_t ElfFile::getSystemElfClass() {
#if __SIZEOF_POINTER__ == 4
return ELFCLASS32
return ELFCLASS32;
#elif __SIZEOF_POINTER__ == 8
return ELFCLASS64;
#else