summaryrefslogtreecommitdiff
path: root/libsysfs
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2004-03-31 23:03:46 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:35:13 -0700
commite5a2989efbae81f40b60885a8f92ea1f87df7ea9 (patch)
treee23fdb064f57cdaa9a48527c30ac5d877d32d924 /libsysfs
parentf27125f98f6487e881a957726da895aebd799f0d (diff)
downloadsystemd-e5a2989efbae81f40b60885a8f92ea1f87df7ea9.tar.gz
[PATCH] udevd race conditions and performance, assorted cleanups - take 2
here is a patch on top of your nice improvements. I fixed the whitespace and it hopefully fixes the stupid timestamp bug in udevd. Some stupid OS sets the hwclock to localtime and linux changes it to UTC while starting. If any events are pending they may be delayed by the users time distance from UTC :) So we use the uptime seconds now.
Diffstat (limited to 'libsysfs')
-rw-r--r--libsysfs/sysfs.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libsysfs/sysfs.h b/libsysfs/sysfs.h
index 0fdb38af19..7ac6efc678 100644
--- a/libsysfs/sysfs.h
+++ b/libsysfs/sysfs.h
@@ -36,8 +36,7 @@
/* Debugging */
#ifdef DEBUG
#include "../logging.h"
-#define dprintf(format, arg...) \
- dbg(format, ##arg)
+#define dprintf(format, arg...) dbg(format, ##arg)
#else
#define dprintf(format, arg...) do { } while (0)
#endif