Changeset cb08279 in mainline


Ignore:
Timestamp:
2007-12-16T18:35:23Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c0697c4c
Parents:
d5cdffe
Message:

Formatting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/panic.h

    rd5cdffe rcb08279  
    3737
    3838#ifdef CONFIG_DEBUG
    39 #       define panic(format, ...) panic_printf("Kernel panic in %s() at %s on line %d: " format, __func__, __FILE__, __LINE__, ##__VA_ARGS__);
     39#define panic(format, ...) \
     40    panic_printf("Kernel panic in %s() at %s on line %d: " format, __func__, \
     41    __FILE__, __LINE__, ##__VA_ARGS__);
    4042#else
    41 #       define panic(format, ...) panic_printf("Kernel panic: " format, ##__VA_ARGS__);
     43#define panic(format, ...) \
     44    panic_printf("Kernel panic: " format, ##__VA_ARGS__);
    4245#endif
    4346
Note: See TracChangeset for help on using the changeset viewer.