diff options
author | Denys Vlasenko | 2009-07-15 00:21:49 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-07-15 00:21:49 +0200 |
commit | e46601d8a300796b1a84a417e58ca763ec2282b7 (patch) | |
tree | a6018de08e14876757836ef8950be21973785285 /runit/runit_lib.h | |
parent | 8e96b5b5314c3f2c3fdb6fd04abfa3e73ac27a5a (diff) | |
download | busybox-e46601d8a300796b1a84a417e58ca763ec2282b7.zip busybox-e46601d8a300796b1a84a417e58ca763ec2282b7.tar.gz |
runsv: rename field in a struct to not collide with other name
no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'runit/runit_lib.h')
-rw-r--r-- | runit/runit_lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runit/runit_lib.h b/runit/runit_lib.h index fd94db9..28769e5 100644 --- a/runit/runit_lib.h +++ b/runit/runit_lib.h @@ -90,7 +90,7 @@ typedef struct svstatus_t { uint32_t time_nsec_be32 PACKED; uint32_t pid_le32 PACKED; uint8_t paused; - uint8_t want; + uint8_t want; /* 'u' or 'd' */ uint8_t got_term; uint8_t run_or_finish; } svstatus_t; |