mirror of
https://github.com/audacity/linuxdeploy.git
synced 2026-04-16 21:51:43 -05:00
Fix syntax on 32-bit platforms
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user