Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
d6b6c41e
Commit
d6b6c41e
authored
25 years ago
by
Martin Stjernholm
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/object.h
+2
-2
2 additions, 2 deletions
src/object.h
with
2 additions
and
2 deletions
src/object.h
+
2
−
2
View file @
d6b6c41e
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
\*/
\*/
/*
/*
* $Id: object.h,v 1.3
4
1999/11/23 10:
21:12
mast Exp $
* $Id: object.h,v 1.3
5
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",__
LIN
E__,__
FIL
E__), NULL) )
#define master() ( get_master() ? get_master() : ( fatal("Couldn't load master object at %s:%d.\n",__
FIL
E__,__
LIN
E__), NULL) )
#else
#else
#define master() debug_master()
#define master() debug_master()
#endif
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment