diff options
author | Denis Vlasenko | 2008-03-28 01:00:09 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-03-28 01:00:09 +0000 |
commit | 2570b2e5759e8ac32b0922d71056bd426caae9f1 (patch) | |
tree | 742bbe33b5ec8ede49147150a2402472172be74b /miscutils | |
parent | cf26ab70c11416401cd53e6a6a5fb4d5c2583246 (diff) | |
download | busybox-2570b2e5759e8ac32b0922d71056bd426caae9f1.zip busybox-2570b2e5759e8ac32b0922d71056bd426caae9f1.tar.gz |
whitespace fixes
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/devfsd.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c index 1b88f05..bb6b679 100644 --- a/miscutils/devfsd.c +++ b/miscutils/devfsd.c @@ -93,17 +93,17 @@ /* Never change this otherwise the binary interface will change */ struct devfsd_notify_struct -{ /* Use native C types to ensure same types in kernel and user space */ - unsigned int type; /* DEVFSD_NOTIFY_* value */ - unsigned int mode; /* Mode of the inode or device entry */ - unsigned int major; /* Major number of device entry */ - unsigned int minor; /* Minor number of device entry */ - unsigned int uid; /* Uid of process, inode or device entry */ - unsigned int gid; /* Gid of process, inode or device entry */ - unsigned int overrun_count; /* Number of lost events */ - unsigned int namelen; /* Number of characters not including '\0' */ - /* The device name MUST come last */ - char devname[DEVFS_PATHLEN]; /* This will be '\0' terminated */ +{ /* Use native C types to ensure same types in kernel and user space */ + unsigned int type; /* DEVFSD_NOTIFY_* value */ + unsigned int mode; /* Mode of the inode or device entry */ + unsigned int major; /* Major number of device entry */ + unsigned int minor; /* Minor number of device entry */ + unsigned int uid; /* Uid of process, inode or device entry */ + unsigned int gid; /* Gid of process, inode or device entry */ + unsigned int overrun_count; /* Number of lost events */ + unsigned int namelen; /* Number of characters not including '\0' */ + /* The device name MUST come last */ + char devname[DEVFS_PATHLEN]; /* This will be '\0' terminated */ }; #define BUFFER_SIZE 16384 |