diff options
Diffstat (limited to 'sys/arch/arm32/podulebus/if_eh.c')
-rw-r--r-- | sys/arch/arm32/podulebus/if_eh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm32/podulebus/if_eh.c b/sys/arch/arm32/podulebus/if_eh.c index a9b830634b4..4083515545f 100644 --- a/sys/arch/arm32/podulebus/if_eh.c +++ b/sys/arch/arm32/podulebus/if_eh.c @@ -309,10 +309,10 @@ ehprobe(parent, match, aux) char *read_buffer; MALLOC(test_data, char *, NLEN, M_TEMP, M_NOWAIT); if (test_data == NULL) - panic("Cannot allocate temporary memory for buffer test (1)\n"); + panic("Cannot allocate temporary memory for buffer test (1)"); MALLOC(read_buffer, char *, NLEN, M_TEMP, M_NOWAIT); if (read_buffer == NULL) - panic("Cannot allocate temporary memory for buffer test (1)\n"); + panic("Cannot allocate temporary memory for buffer test (1)"); printf("1."); |