Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 179215
Collapse All | Expand All

(-)fte.old/src/con_x11.cpp (-2 / +2 lines)
Lines 535-543 Link Here
535
    }
535
    }
536
    if (i == ICON_COUNT) {
536
    if (i == ICON_COUNT) {
537
        // Everything OK, can create property
537
        // Everything OK, can create property
538
        CARD32 *iconBuffer = (CARD32 *)malloc(iconBufferSize * sizeof(CARD32));
538
        long *iconBuffer = (long *)malloc(iconBufferSize * sizeof(long));
539
        if (iconBuffer) {
539
        if (iconBuffer) {
540
            CARD32 *b = iconBuffer;
540
            long *b = iconBuffer;
541
            for (i = 0; i < ICON_COUNT; i++) {
541
            for (i = 0; i < ICON_COUNT; i++) {
542
                XpmImage &xpm = xpmImage[i];
542
                XpmImage &xpm = xpmImage[i];
543
                CARD32 *&colors = xpmColors[i];
543
                CARD32 *&colors = xpmColors[i];

Return to bug 179215