wok rev 11802

syslinux: fix ifmem.c (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 25 12:15:57 2012 +0100 (2012-02-25)
parents 9bf2fe503ae4
children 98a90c761dcd
files syslinux/stuff/extra/ifmem.c
line diff
     1.1 --- a/syslinux/stuff/extra/ifmem.c	Sat Feb 25 11:52:40 2012 +0100
     1.2 +++ b/syslinux/stuff/extra/ifmem.c	Sat Feb 25 12:15:57 2012 +0100
     1.3 @@ -106,7 +106,7 @@
     1.4    // find target according to ram size
     1.5    ram_size = memory_size();
     1.6    printf("Total memory found %luK.\n",ram_size);
     1.7 -  ram_size += (1 <<= 10); // add 1M to round boundaries...
     1.8 +  ram_size += (1 << 10); // add 1M to round boundaries...
     1.9    
    1.10    i = 1;
    1.11    s = argv[1];