summaryrefslogtreecommitdiff
path: root/laden
diff options
context:
space:
mode:
authorneal <neal>2005-01-07 11:11:46 +0000
committerneal <neal>2005-01-07 11:11:46 +0000
commite765f42d72ab706337efd22e79cbc74191c58f76 (patch)
treebebb13e2256908c1fd7100e05d3e5e5aab344e25 /laden
parenta34443c2b24f3def14b8f10e34c9cd5d7d7c42d3 (diff)
deva/
2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional. laden/ 2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional. physmem/ 2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional. task/ 2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional. wortel/ 2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional.
Diffstat (limited to 'laden')
-rw-r--r--laden/ChangeLog5
-rw-r--r--laden/output.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/laden/ChangeLog b/laden/ChangeLog
index 366059c..c845c6d 100644
--- a/laden/ChangeLog
+++ b/laden/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-07 Neal H. Walfield <neal@gnu.org>
+
+ * output.h (debug): Preface __VA_ARGS__ with ## thereby making it
+ optional.
+
2004-11-17 Neal H. Walfield <neal@gnu.org>
* Makefile.am (bootdir): New variable.
diff --git a/laden/output.h b/laden/output.h
index 70e26bc..ff0c3a8 100644
--- a/laden/output.h
+++ b/laden/output.h
@@ -1,5 +1,5 @@
/* output.h - Output routines interfaces.
- Copyright (C) 2003 Free Software Foundation, Inc.
+ Copyright (C) 2003, 2005 Free Software Foundation, Inc.
Written by Marcus Brinkmann.
This file is part of the GNU Hurd.
@@ -78,7 +78,7 @@ extern int output_debug;
extern char *program_name; \
if (output_debug) \
printf ("%s:%s: " fmt, program_name, \
- __FUNCTION__, __VA_ARGS__); \
+ __FUNCTION__, ##__VA_ARGS__); \
})
#endif /* _OUTPUT_H */