Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 234361 | Differences between
and this patch

Collapse All | Expand All

(-)vpnclient-orig/linuxkernelapi.c (-1 / +4 lines)
Lines 9-15 Link Here
9
    void*rc = kmalloc(size, GFP_ATOMIC);
9
    void*rc = kmalloc(size, GFP_ATOMIC);
10
    if(NULL == rc)
10
    if(NULL == rc)
11
    {
11
    {
12
        printk("<1> os_malloc size %d failed\n",size);
12
/* Allow for 32- or 64-bit size
13
 *        printk("<1> os_malloc size %d failed\n",size);
14
 */
15
        printk("<1> os_malloc size %ld failed\n", (long)size);
13
    }
16
    }
14
17
15
    return rc;
18
    return rc;

Return to bug 234361