X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Fkdebug.c;h=063df825415520e6fc83b916daed2aa5fe59a22e;hb=c16f98494630501e5dd3919697732d834f3de4ef;hp=943148b3d7013978b6ec865428b968c8426426b2;hpb=99ebec567d8485806f6ebe23b8c8a1b825d0cf4d;p=bertos.git diff --git a/drv/kdebug.c b/drv/kdebug.c index 943148b3..063df825 100755 --- a/drv/kdebug.c +++ b/drv/kdebug.c @@ -16,6 +16,10 @@ /* * $Log$ + * Revision 1.8 2004/07/30 14:26:33 rasky + * Semplificato l'output dell'ASSERT + * Aggiunta ASSERT2 con stringa di help opzionalmente disattivabile + * * Revision 1.7 2004/07/30 14:15:53 rasky * Nuovo supporto unificato per detect della CPU * @@ -194,9 +198,9 @@ void PGM_FUNC(kputs)(const char * PGM_ATTR str) int PGM_FUNC(__assert)(const char * PGM_ATTR cond, const char *file, int line) { PGM_FUNC(kputs)(file); - PGM_FUNC(kprintf)(PSTR(":%d: Assertion failed: \""), line); + PGM_FUNC(kprintf)(PSTR(":%d: Assertion failed: "), line); PGM_FUNC(kputs)(cond); - PGM_FUNC(kputs)(PSTR("\"\n")); + PGM_FUNC(kputs)(PSTR("\n")); return 1; }