# HG changeset patch # User Pascal Bellard # Date 1330168557 -3600 # Node ID 21116dbdd40de27ea7433db67f6d5718640d6f96 # Parent 9bf2fe503ae4e34693329586dba9f070a50f4b3b syslinux: fix ifmem.c (again) diff -r 9bf2fe503ae4 -r 21116dbdd40d syslinux/stuff/extra/ifmem.c --- a/syslinux/stuff/extra/ifmem.c Sat Feb 25 11:52:40 2012 +0100 +++ b/syslinux/stuff/extra/ifmem.c Sat Feb 25 12:15:57 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];