Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/debug/panic.c

    rd5a1c73 r22a28a69  
    6161        } else if (cat == PANIC_BADTRAP) {
    6262                printf("BAD TRAP %ld.\n", address);
    63                 if (fmt) {
    64                         vprintf(fmt, args);
    65                         printf("\n");
    66                 }
    6763        } else if (cat == PANIC_MEMTRAP) {
    6864                printf("A BAD MEMORY ACCESS WHILE ");
     
    7672                        printf("REFERENCING");
    7773                printf(" ADDRESS %p.\n", address);
    78                 if (fmt) {
    79                         vprintf(fmt, args);
    80                         printf("\n");
    81                 }
    8274        } else {
    8375                printf("THE FOLLOWING REASON:\n");
    8476                vprintf(fmt, args);
    85                 printf("\n");
    8677        }
    8778        va_end(args);
Note: See TracChangeset for help on using the changeset viewer.