Aesthetical change.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13854 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-07-29 13:15:39 +00:00
parent 662f52848a
commit d35f0da76d
1 changed files with 3 additions and 3 deletions

View File

@ -17,10 +17,10 @@
// define the PANIC macro
#ifndef PANIC
# ifndef _KERNEL_MODE
# define PANIC(str) debugger(str)
# else
# ifdef _KERNEL_MODE
# define PANIC(str) panic(str)
# else
# define PANIC(str) debugger(str)
# endif
#endif