diff --git a/src/servers/registrar/Debug.h b/src/servers/registrar/Debug.h index 36ae2d7822..f6aecb4785 100644 --- a/src/servers/registrar/Debug.h +++ b/src/servers/registrar/Debug.h @@ -41,6 +41,7 @@ #define SET_ERROR(var, err) { status_t _status = err; if (_status < B_OK) REPORT_ERROR(_status); var = _status; } #define FATAL(x) { __out(DEBUG_APP ": "); __out x; } #define ERROR(x) { __out(DEBUG_APP ": "); __out x; } + #define WARNING(x) { __out(DEBUG_APP ": "); __out x; } #define INFORM(x) { __out(DEBUG_APP ": "); __out x; } #define FUNCTION(x) { __out(DEBUG_APP ": %s() ",__FUNCTION__); __out x; } #define FUNCTION_START() { __out(DEBUG_APP ": %s()\n",__FUNCTION__); } @@ -53,6 +54,7 @@ #define SET_ERROR(var, err) var = err; #define FATAL(x) { __out(DEBUG_APP ": "); __out x; } #define ERROR(x) { __out(DEBUG_APP ": "); __out x; } + #define WARNING(x) { __out(DEBUG_APP ": "); __out x; } #define INFORM(x) { __out(DEBUG_APP ": "); __out x; } #define FUNCTION(x) ; #define FUNCTION_START() ;