Removed (pretty inconsistently used) tab chars from source code base.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
/*****************************************************************************/
|
||||
/* */
|
||||
/* check.c */
|
||||
/* check.c */
|
||||
/* */
|
||||
/* Assert like macros */
|
||||
/* Assert like macros */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
@@ -41,38 +41,38 @@
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Data */
|
||||
/* Data */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
/* Predefined messages */
|
||||
const char* MsgInternalError = "Internal error: ";
|
||||
const char* MsgPrecondition = "Precondition violated: ";
|
||||
const char* MsgCheckFailed = "Check failed: ";
|
||||
const char* MsgProgramAborted = "Program aborted: ";
|
||||
const char* MsgInternalError = "Internal error: ";
|
||||
const char* MsgPrecondition = "Precondition violated: ";
|
||||
const char* MsgCheckFailed = "Check failed: ";
|
||||
const char* MsgProgramAborted = "Program aborted: ";
|
||||
|
||||
|
||||
|
||||
static void DefaultCheckFailed (const char* msg, const char* cond,
|
||||
const char* file, unsigned line)
|
||||
attribute ((noreturn));
|
||||
const char* file, unsigned line)
|
||||
attribute ((noreturn));
|
||||
|
||||
void (*CheckFailed) (const char* Msg, const char* Cond,
|
||||
const char* File, unsigned Line) attribute ((noreturn))
|
||||
= DefaultCheckFailed;
|
||||
const char* File, unsigned Line) attribute ((noreturn))
|
||||
= DefaultCheckFailed;
|
||||
/* Function pointer that is called from check if the condition code is true. */
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Code */
|
||||
/* Code */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
static void DefaultCheckFailed (const char* Msg, const char* Cond,
|
||||
const char* File, unsigned Line)
|
||||
const char* File, unsigned Line)
|
||||
{
|
||||
/* Output a diagnostic and abort */
|
||||
AbEnd ("%s%s, file `%s', line %u", Msg, Cond, File, Line);
|
||||
|
||||
Reference in New Issue
Block a user