diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-28 01:00:09 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-28 01:00:09 +0000 |
| commit | 2570b2e5759e8ac32b0922d71056bd426caae9f1 (patch) | |
| tree | 742bbe33b5ec8ede49147150a2402472172be74b /miscutils | |
| parent | cf26ab70c11416401cd53e6a6a5fb4d5c2583246 (diff) | |
| download | busybox-w32-2570b2e5759e8ac32b0922d71056bd426caae9f1.tar.gz busybox-w32-2570b2e5759e8ac32b0922d71056bd426caae9f1.tar.bz2 busybox-w32-2570b2e5759e8ac32b0922d71056bd426caae9f1.zip | |
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 1b88f050e..bb6b679b9 100644 --- a/miscutils/devfsd.c +++ b/miscutils/devfsd.c | |||
| @@ -93,17 +93,17 @@ | |||
| 93 | /* Never change this otherwise the binary interface will change */ | 93 | /* Never change this otherwise the binary interface will change */ |
| 94 | 94 | ||
| 95 | struct devfsd_notify_struct | 95 | struct devfsd_notify_struct |
| 96 | { /* Use native C types to ensure same types in kernel and user space */ | 96 | { /* Use native C types to ensure same types in kernel and user space */ |
| 97 | unsigned int type; /* DEVFSD_NOTIFY_* value */ | 97 | unsigned int type; /* DEVFSD_NOTIFY_* value */ |
| 98 | unsigned int mode; /* Mode of the inode or device entry */ | 98 | unsigned int mode; /* Mode of the inode or device entry */ |
| 99 | unsigned int major; /* Major number of device entry */ | 99 | unsigned int major; /* Major number of device entry */ |
| 100 | unsigned int minor; /* Minor number of device entry */ | 100 | unsigned int minor; /* Minor number of device entry */ |
| 101 | unsigned int uid; /* Uid of process, inode or device entry */ | 101 | unsigned int uid; /* Uid of process, inode or device entry */ |
| 102 | unsigned int gid; /* Gid of process, inode or device entry */ | 102 | unsigned int gid; /* Gid of process, inode or device entry */ |
| 103 | unsigned int overrun_count; /* Number of lost events */ | 103 | unsigned int overrun_count; /* Number of lost events */ |
| 104 | unsigned int namelen; /* Number of characters not including '\0' */ | 104 | unsigned int namelen; /* Number of characters not including '\0' */ |
| 105 | /* The device name MUST come last */ | 105 | /* The device name MUST come last */ |
| 106 | char devname[DEVFS_PATHLEN]; /* This will be '\0' terminated */ | 106 | char devname[DEVFS_PATHLEN]; /* This will be '\0' terminated */ |
| 107 | }; | 107 | }; |
| 108 | 108 | ||
| 109 | #define BUFFER_SIZE 16384 | 109 | #define BUFFER_SIZE 16384 |
