summaryrefslogtreecommitdiff
path: root/dm_error.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2009-07-17 22:14:42 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-07-17 22:14:42 -0700
commit3beb4d278caa281ea8ebad55ae2f45ea0d46a6e6 (patch)
treec8f6bfcc9b11540fd7c102752c343078080513ac /dm_error.h
parentb80b263f964031b1edef0a5e0a77a6615dc4be82 (diff)
Use imdent to show cpp macro nesting more clearly
Also strip trailing whitespace to make git happier. While many lines are changes, "git diff -w" shows no changes other than pure whitespace. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'dm_error.h')
-rw-r--r--dm_error.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/dm_error.h b/dm_error.h
index 26f9895..d1f749d 100644
--- a/dm_error.h
+++ b/dm_error.h
@@ -32,13 +32,13 @@ authorization.
#ifndef _DM_ERROR_H_
-#define _DM_ERROR_H_ 1
+# define _DM_ERROR_H_ 1
-#if defined(GCC_PRINTFLIKE) && defined(__GNUC__)
-# define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
-#else
-# define GCC_PRINTFLIKE(fmt,var) /*nothing*/
-#endif
+# if defined(GCC_PRINTFLIKE) && defined(__GNUC__)
+# define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
+# else
+# define GCC_PRINTFLIKE(fmt,var) /*nothing*/
+# endif
extern void Debug (char * fmt, ...) GCC_PRINTFLIKE(1,2);
extern void InitErrorLog (void);