wok rev 11801

syslinux: fix ifmem.c
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 25 11:52:40 2012 +0100 (2012-02-25)
parents 7a293959a3fa
children 21116dbdd40d
files syslinux/stuff/extra/ifmem.c
line diff
     1.1 --- a/syslinux/stuff/extra/ifmem.c	Sat Feb 25 11:17:36 2012 +0100
     1.2 +++ b/syslinux/stuff/extra/ifmem.c	Sat Feb 25 11:52:40 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];