summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2009-02-12 01:09:37 +0000
committerRoy Marples <roy@marples.name>2009-02-12 01:09:37 +0000
commit40dbcc878593552d31ecc4a1fcdf2f4672fd736b (patch)
tree0008e276f64b331fca207e93602578b1e3455169 /common.h
parenteab2229cfa459ccbf8178ad4cdba68fbb7ebaf46 (diff)
downloaddhcpcd-40dbcc878593552d31ecc4a1fcdf2f4672fd736b.tar.xz
More style updates.
Diffstat (limited to 'common.h')
-rw-r--r--common.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/common.h b/common.h
index e12d0054..3df9e1ec 100644
--- a/common.h
+++ b/common.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
@@ -38,12 +38,12 @@
#define UNCONST(a) ((void *)(unsigned long)(const void *)(a))
#define timeval_to_double(tv) ((tv)->tv_sec * 1.0 + (tv)->tv_usec * 1.0e-6)
-#define timernorm(tvp) \
- do { \
- while ((tvp)->tv_usec >= 1000000) { \
- (tvp)->tv_sec++; \
- (tvp)->tv_usec -= 1000000; \
- } \
+#define timernorm(tvp) \
+ do { \
+ while ((tvp)->tv_usec >= 1000000) { \
+ (tvp)->tv_sec++; \
+ (tvp)->tv_usec -= 1000000; \
+ } \
} while (0 /* CONSTCOND */);
#if __GNUC__ > 2 || defined(__INTEL_COMPILER)