Skip to content
Snippets Groups Projects
Commit d6b6c41e authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Fixed bogus arguments to error message in the debug master() macro.

Rev: src/object.h:1.35
parent eb9cfc36
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
\*/ \*/
/* /*
* $Id: object.h,v 1.34 1999/11/23 10:21:12 mast Exp $ * $Id: object.h,v 1.35 1999/11/23 10:36:39 mast Exp $
*/ */
#ifndef OBJECT_H #ifndef OBJECT_H
#define OBJECT_H #define OBJECT_H
...@@ -115,7 +115,7 @@ void check_all_objects(void); ...@@ -115,7 +115,7 @@ void check_all_objects(void);
#endif #endif
#ifdef PIKE_DEBUG #ifdef PIKE_DEBUG
#define master() ( get_master() ? get_master() : ( fatal("Couldn't load master object at %s:%d.\n",__LINE__,__FILE__), NULL) ) #define master() ( get_master() ? get_master() : ( fatal("Couldn't load master object at %s:%d.\n",__FILE__,__LINE__), NULL) )
#else #else
#define master() debug_master() #define master() debug_master()
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment