# HG changeset patch # User Pascal Bellard # Date 1330167160 -3600 # Node ID 9bf2fe503ae4e34693329586dba9f070a50f4b3b # Parent 7a293959a3faffc4451f726ecfa6774d13d9c479 syslinux: fix ifmem.c diff -r 7a293959a3fa -r 9bf2fe503ae4 syslinux/stuff/extra/ifmem.c --- a/syslinux/stuff/extra/ifmem.c Sat Feb 25 11:17:36 2012 +0100 +++ b/syslinux/stuff/extra/ifmem.c Sat Feb 25 11:52:40 2012 +0100 @@ -106,7 +106,7 @@ // find target according to ram size ram_size = memory_size(); printf("Total memory found %luK.\n",ram_size); - ram_size += 1 <<= 10; // add 1M to round boundaries... + ram_size += (1 <<= 10); // add 1M to round boundaries... i = 1; s = argv[1];