Changeset f651e80 in mainline for kernel/genarch/src/fb/fb.c


Ignore:
Timestamp:
2009-01-08T12:07:38Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7447572
Parents:
c571f42
Message:

Make newlines in panic messages consistent. Add periods at end of messages so that it is obvious whether they are printed entirely.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/fb/fb.c

    rc571f42 rf651e80  
    457457                break;
    458458        default:
    459                 panic("Unsupported visual.\n");
     459                panic("Unsupported visual.");
    460460        }
    461461       
     
    489489        backbuf = (uint8_t *) malloc(bbsize, 0);
    490490        if (!backbuf)
    491                 panic("Unable to allocate backbuffer.\n");
     491                panic("Unable to allocate backbuffer.");
    492492       
    493493        glyphs = (uint8_t *) malloc(glyphsize, 0);
    494494        if (!glyphs)
    495                 panic("Unable to allocate glyphs.\n");
     495                panic("Unable to allocate glyphs.");
    496496       
    497497        bgscan = malloc(bgscanbytes, 0);
    498498        if (!bgscan)
    499                 panic("Unable to allocate background pixel.\n");
     499                panic("Unable to allocate background pixel.");
    500500       
    501501        memsetb(backbuf, bbsize, 0);
Note: See TracChangeset for help on using the changeset viewer.